corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 /**
2 * @license Highcharts JS v5.0.12 (2017-05-24)
3 * Highstock as a plugin for Highcharts
4 *
5 * (c) 2017 Torstein Honsi
6 *
7 * License: www.highcharts.com/license
8 */
9 'use strict';
10 (function(factory) {
11 if (typeof module === 'object' && module.exports) {
12 module.exports = factory;
13 } else {
14 factory(Highcharts);
15 }
16 }(function(Highcharts) {
17 (function(H) {
18 /**
19 * (c) 2010-2017 Torstein Honsi
20 *
21 * License: www.highcharts.com/license
22 */
23 var addEvent = H.addEvent,
24 Axis = H.Axis,
25 Chart = H.Chart,
26 css = H.css,
27 dateFormat = H.dateFormat,
28 defined = H.defined,
29 each = H.each,
30 extend = H.extend,
31 noop = H.noop,
32 Series = H.Series,
33 timeUnits = H.timeUnits,
34 wrap = H.wrap;
35  
36 /* ****************************************************************************
37 * Start ordinal axis logic *
38 *****************************************************************************/
39  
40  
41 wrap(Series.prototype, 'init', function(proceed) {
42 var series = this,
43 xAxis;
44  
45 // call the original function
46 proceed.apply(this, Array.prototype.slice.call(arguments, 1));
47  
48 xAxis = series.xAxis;
49  
50 // Destroy the extended ordinal index on updated data
51 if (xAxis && xAxis.options.ordinal) {
52 addEvent(series, 'updatedData', function() {
53 delete xAxis.ordinalIndex;
54 });
55 }
56 });
57  
58 /**
59 * In an ordinal axis, there might be areas with dense consentrations of points, then large
60 * gaps between some. Creating equally distributed ticks over this entire range
61 * may lead to a huge number of ticks that will later be removed. So instead, break the
62 * positions up in segments, find the tick positions for each segment then concatenize them.
63 * This method is used from both data grouping logic and X axis tick position logic.
64 */
65 wrap(Axis.prototype, 'getTimeTicks', function(proceed, normalizedInterval, min, max, startOfWeek, positions, closestDistance, findHigherRanks) {
66  
67 var start = 0,
68 end,
69 segmentPositions,
70 higherRanks = {},
71 hasCrossedHigherRank,
72 info,
73 posLength,
74 outsideMax,
75 groupPositions = [],
76 lastGroupPosition = -Number.MAX_VALUE,
77 tickPixelIntervalOption = this.options.tickPixelInterval;
78  
79 // The positions are not always defined, for example for ordinal positions when data
80 // has regular interval (#1557, #2090)
81 if ((!this.options.ordinal && !this.options.breaks) || !positions || positions.length < 3 || min === undefined) {
82 return proceed.call(this, normalizedInterval, min, max, startOfWeek);
83 }
84  
85 // Analyze the positions array to split it into segments on gaps larger than 5 times
86 // the closest distance. The closest distance is already found at this point, so
87 // we reuse that instead of computing it again.
88 posLength = positions.length;
89  
90 for (end = 0; end < posLength; end++) {
91  
92 outsideMax = end && positions[end - 1] > max;
93  
94 if (positions[end] < min) { // Set the last position before min
95 start = end;
96 }
97  
98 if (end === posLength - 1 || positions[end + 1] - positions[end] > closestDistance * 5 || outsideMax) {
99  
100 // For each segment, calculate the tick positions from the getTimeTicks utility
101 // function. The interval will be the same regardless of how long the segment is.
102 if (positions[end] > lastGroupPosition) { // #1475
103  
104 segmentPositions = proceed.call(this, normalizedInterval, positions[start], positions[end], startOfWeek);
105  
106 // Prevent duplicate groups, for example for multiple segments within one larger time frame (#1475)
107 while (segmentPositions.length && segmentPositions[0] <= lastGroupPosition) {
108 segmentPositions.shift();
109 }
110 if (segmentPositions.length) {
111 lastGroupPosition = segmentPositions[segmentPositions.length - 1];
112 }
113  
114 groupPositions = groupPositions.concat(segmentPositions);
115 }
116 // Set start of next segment
117 start = end + 1;
118 }
119  
120 if (outsideMax) {
121 break;
122 }
123 }
124  
125 // Get the grouping info from the last of the segments. The info is the same for
126 // all segments.
127 info = segmentPositions.info;
128  
129 // Optionally identify ticks with higher rank, for example when the ticks
130 // have crossed midnight.
131 if (findHigherRanks && info.unitRange <= timeUnits.hour) {
132 end = groupPositions.length - 1;
133  
134 // Compare points two by two
135 for (start = 1; start < end; start++) {
136 if (dateFormat('%d', groupPositions[start]) !== dateFormat('%d', groupPositions[start - 1])) {
137 higherRanks[groupPositions[start]] = 'day';
138 hasCrossedHigherRank = true;
139 }
140 }
141  
142 // If the complete array has crossed midnight, we want to mark the first
143 // positions also as higher rank
144 if (hasCrossedHigherRank) {
145 higherRanks[groupPositions[0]] = 'day';
146 }
147 info.higherRanks = higherRanks;
148 }
149  
150 // Save the info
151 groupPositions.info = info;
152  
153  
154  
155 // Don't show ticks within a gap in the ordinal axis, where the space between
156 // two points is greater than a portion of the tick pixel interval
157 if (findHigherRanks && defined(tickPixelIntervalOption)) { // check for squashed ticks
158  
159 var length = groupPositions.length,
160 i = length,
161 itemToRemove,
162 translated,
163 translatedArr = [],
164 lastTranslated,
165 medianDistance,
166 distance,
167 distances = [];
168  
169 // Find median pixel distance in order to keep a reasonably even distance between
170 // ticks (#748)
171 while (i--) {
172 translated = this.translate(groupPositions[i]);
173 if (lastTranslated) {
174 distances[i] = lastTranslated - translated;
175 }
176 translatedArr[i] = lastTranslated = translated;
177 }
178 distances.sort();
179 medianDistance = distances[Math.floor(distances.length / 2)];
180 if (medianDistance < tickPixelIntervalOption * 0.6) {
181 < tickPixelIntervalOption * 0.6) { medianDistance = null;
182 < tickPixelIntervalOption * 0.6) { }
183  
184 < tickPixelIntervalOption * 0.6) { // Now loop over again and remove ticks where needed
185 < tickPixelIntervalOption * 0.6) { i = groupPositions[length - 1] > max ? length - 1 : length; // #817
186 < tickPixelIntervalOption * 0.6) { lastTranslated = undefined;
187 < tickPixelIntervalOption * 0.6) { while (i--) {
188 < tickPixelIntervalOption * 0.6) { translated = translatedArr[i];
189 < tickPixelIntervalOption * 0.6) { distance = Math.abs(lastTranslated - translated);
190 < tickPixelIntervalOption * 0.6) { // #4175 - when axis is reversed, the distance, is negative but
191 < tickPixelIntervalOption * 0.6) { // tickPixelIntervalOption positive, so we need to compare the same values
192  
193 < tickPixelIntervalOption * 0.6) { // Remove ticks that are closer than 0.6 times the pixel interval from the one to the right,
194 < tickPixelIntervalOption * 0.6) { // but not if it is close to the median distance (#748).
195 < tickPixelIntervalOption * 0.6) { if (lastTranslated && distance < tickPixelIntervalOption * 0.8 &&
196 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 && (medianDistance === null || distance < medianDistance * 0.8)) {
197  
198 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Is this a higher ranked position with a normal position to the right?
199 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (higherRanks[groupPositions[i]] && !higherRanks[groupPositions[i + 1]]) {
200  
201 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Yes: remove the lower ranked neighbour to the right
202 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { itemToRemove = i + 1;
203 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { lastTranslated = translated; // #709
204  
205 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { } else {
206  
207 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // No: remove this one
208 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { itemToRemove = i;
209 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
210  
211 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { groupPositions.splice(itemToRemove, 1);
212  
213 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { } else {
214 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { lastTranslated = translated;
215 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
216 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
217 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
218 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { return groupPositions;
219 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { });
220  
221 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Extend the Axis prototype
222 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { extend(Axis.prototype, /** @lends Axis.prototype */ {
223  
224 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { /**
225 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * Calculate the ordinal positions before tick positions are calculated.
226 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { */
227 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { beforeSetTickPositions: function() {
228 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { var axis = this,
229 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { len,
230 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalPositions = [],
231 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { useOrdinal = false,
232 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { dist,
233 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { extremes = axis.getExtremes(),
234 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { min = extremes.min,
235 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { max = extremes.max,
236 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { minIndex,
237 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { maxIndex,
238 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { slope,
239 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { hasBreaks = axis.isXAxis && !!axis.options.breaks,
240 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { isOrdinal = axis.options.ordinal,
241 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ignoreHiddenSeries = axis.chart.options.chart.ignoreHiddenSeries,
242 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { i;
243  
244 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // apply the ordinal logic
245 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (isOrdinal || hasBreaks) { // #4167 YAxis is never ordinal ?
246  
247 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { each(axis.series, function(series, i) {
248  
249 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if ((!ignoreHiddenSeries || series.visible !== false) && (series.takeOrdinalPosition !== false || hasBreaks)) {
250  
251 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // concatenate the processed X data into the existing positions, or the empty array
252 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalPositions = ordinalPositions.concat(series.processedXData);
253 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { len = ordinalPositions.length;
254  
255 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // remove duplicates (#1588)
256 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalPositions.sort(function(a, b) {
257 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { return a - b; // without a custom function it is sorted as strings
258 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { });
259  
260 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (len) {
261 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { i = len - 1;
262 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { while (i--) {
263 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (ordinalPositions[i] === ordinalPositions[i + 1]) {
264 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalPositions.splice(i, 1);
265 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
266 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
267 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
268 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
269  
270 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { });
271  
272 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // cache the length
273 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { len = ordinalPositions.length;
274  
275 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Check if we really need the overhead of mapping axis data against the ordinal positions.
276 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // If the series consist of evenly spaced data any way, we don't need any ordinal logic.
277 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (len > 2) { // two points have equal distance by default
278 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { dist = ordinalPositions[1] - ordinalPositions[0];
279 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { i = len - 1;
280 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { while (i-- && !useOrdinal) {
281 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (ordinalPositions[i + 1] - ordinalPositions[i] !== dist) {
282 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { useOrdinal = true;
283 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
284 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
285  
286 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // When zooming in on a week, prevent axis padding for weekends even though the data within
287 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // the week is evenly spaced.
288 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (!axis.options.keepOrdinalPadding && (ordinalPositions[0] - min > dist || max - ordinalPositions[ordinalPositions.length - 1] > dist)) {
289 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { useOrdinal = true;
290 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
291 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
292  
293 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Record the slope and offset to compute the linear values from the array index.
294 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Since the ordinal positions may exceed the current range, get the start and
295 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // end positions within it (#719, #665b)
296 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (useOrdinal) {
297  
298 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Register
299 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { axis.ordinalPositions = ordinalPositions;
300  
301 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // This relies on the ordinalPositions being set. Use Math.max
302 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // and Math.min to prevent padding on either sides of the data.
303 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { minIndex = axis.ordinal2lin( // #5979
304 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { Math.max(
305 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { min,
306 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalPositions[0]
307 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ),
308 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { true
309 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { );
310 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { maxIndex = Math.max(axis.ordinal2lin(
311 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { Math.min(
312 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { max,
313 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalPositions[ordinalPositions.length - 1]
314 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ),
315 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { true
316 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ), 1); // #3339
317  
318 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Set the slope and offset of the values compared to the indices in the ordinal positions
319 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { axis.ordinalSlope = slope = (max - min) / (maxIndex - minIndex);
320 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { axis.ordinalOffset = min - (minIndex * slope);
321  
322 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { } else {
323 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { axis.ordinalPositions = axis.ordinalSlope = axis.ordinalOffset = undefined;
324 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
325 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
326 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { axis.isOrdinal = isOrdinal && useOrdinal; // #3818, #4196, #4926
327 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { axis.groupIntervalFactor = null; // reset for next run
328 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { },
329 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { /**
330 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * Translate from a linear axis value to the corresponding ordinal axis position. If there
331 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * are no gaps in the ordinal axis this will be the same. The translated value is the value
332 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * that the point would have if the axis were linear, using the same min and max.
333 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { *
334 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * @param Number val The axis value
335 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * @param Boolean toIndex Whether to return the index in the ordinalPositions or the new value
336 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { */
337 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { val2lin: function(val, toIndex) {
338 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { var axis = this,
339 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalPositions = axis.ordinalPositions,
340 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ret;
341  
342 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (!ordinalPositions) {
343 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ret = val;
344  
345 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { } else {
346  
347 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { var ordinalLength = ordinalPositions.length,
348 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { i,
349 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { distance,
350 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalIndex;
351  
352 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // first look for an exact match in the ordinalpositions array
353 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { i = ordinalLength;
354 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { while (i--) {
355 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (ordinalPositions[i] === val) {
356 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalIndex = i;
357 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { break;
358 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
359 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
360  
361 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // if that failed, find the intermediate position between the two nearest values
362 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { i = ordinalLength - 1;
363 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { while (i--) {
364 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (val > ordinalPositions[i] || i === 0) { // interpolate
365 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { distance = (val - ordinalPositions[i]) / (ordinalPositions[i + 1] - ordinalPositions[i]); // something between 0 and 1
366 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalIndex = i + distance;
367 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { break;
368 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
369 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
370 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ret = toIndex ?
371 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalIndex :
372 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { axis.ordinalSlope * (ordinalIndex || 0) + axis.ordinalOffset;
373 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { }
374 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { return ret;
375 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { },
376 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { /**
377 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * Translate from linear (internal) to axis value
378 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { *
379 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * @param Number val The linear abstracted value
380 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { * @param Boolean fromIndex Translate from an index in the ordinal positions rather than a value
381 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { */
382 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { lin2val: function(val, fromIndex) {
383 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { var axis = this,
384 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalPositions = axis.ordinalPositions,
385 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ret;
386  
387 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (!ordinalPositions) { // the visible range contains only equally spaced values
388 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ret = val;
389  
390 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { } else {
391  
392 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { var ordinalSlope = axis.ordinalSlope,
393 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { ordinalOffset = axis.ordinalOffset,
394 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { i = ordinalPositions.length - 1,
395 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { linearEquivalentLeft,
396 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { linearEquivalentRight,
397 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { distance;
398  
399  
400 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // Handle the case where we translate from the index directly, used only
401 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { // when panning an ordinal axis
402 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (fromIndex) {
403  
404 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) { if (val < 0) { // out of range, in effect panning to the left
405 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / val = ordinalPositions[0];
406 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / } else if (val > i) { // out of range, panning to the right
407 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / val = ordinalPositions[i];
408 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / } else { // split it up
409 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / i = Math.floor(val);
410 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / distance = val - i; // the decimal
411 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
412  
413 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Loop down along the ordinal positions. When the linear equivalent of i matches
414 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // an ordinal position, interpolate between the left and right values.
415 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / } else {
416 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / while (i--) {
417 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / linearEquivalentLeft = (ordinalSlope * i) + ordinalOffset;
418 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (val >= linearEquivalentLeft) {
419 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / linearEquivalentRight = (ordinalSlope * (i + 1)) + ordinalOffset;
420 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / distance = (val - linearEquivalentLeft) / (linearEquivalentRight - linearEquivalentLeft); // something between 0 and 1
421 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / break;
422 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
423 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
424 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
425  
426 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // If the index is within the range of the ordinal positions, return the associated
427 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // or interpolated value. If not, just return the value
428 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / return distance !== undefined && ordinalPositions[i] !== undefined ?
429 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ordinalPositions[i] + (distance ? distance * (ordinalPositions[i + 1] - ordinalPositions[i]) : 0) :
430 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / val;
431 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
432 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / return ret;
433 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / },
434 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / /**
435 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * Get the ordinal positions for the entire data set. This is necessary in chart panning
436 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * because we need to find out what points or data groups are available outside the
437 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * visible range. When a panning operation starts, if an index for the given grouping
438 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * does not exists, it is created and cached. This index is deleted on updated data, so
439 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * it will be regenerated the next time a panning operation starts.
440 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / */
441 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / getExtendedPositions: function() {
442 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / var axis = this,
443 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / chart = axis.chart,
444 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / grouping = axis.series[0].currentDataGrouping,
445 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ordinalIndex = axis.ordinalIndex,
446 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / key = grouping ? grouping.count + grouping.unitName : 'raw',
447 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / extremes = axis.getExtremes(),
448 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / fakeAxis,
449 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / fakeSeries;
450  
451 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // If this is the first time, or the ordinal index is deleted by updatedData,
452 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // create it.
453 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (!ordinalIndex) {
454 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ordinalIndex = axis.ordinalIndex = {};
455 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
456  
457  
458 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (!ordinalIndex[key]) {
459  
460 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Create a fake axis object where the extended ordinal positions are emulated
461 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / fakeAxis = {
462 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / series: [],
463 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / chart: chart,
464 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / getExtremes: function() {
465 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / return {
466 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / min: extremes.dataMin,
467 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / max: extremes.dataMax
468 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / };
469 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / },
470 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / options: {
471 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ordinal: true
472 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / },
473 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / val2lin: Axis.prototype.val2lin, // #2590
474 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ordinal2lin: Axis.prototype.ordinal2lin // #6276
475 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / };
476  
477 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Add the fake series to hold the full data, then apply processData to it
478 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / each(axis.series, function(series) {
479 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / fakeSeries = {
480 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / xAxis: fakeAxis,
481 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / xData: series.xData,
482 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / chart: chart,
483 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / destroyGroupedData: noop
484 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / };
485 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / fakeSeries.options = {
486 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / dataGrouping: grouping ? {
487 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / enabled: true,
488 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / forced: true,
489 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / approximation: 'open', // doesn't matter which, use the fastest
490 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / units: [
491 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / [grouping.unitName, [grouping.count]]
492 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ]
493 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / } : {
494 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / enabled: false
495 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
496 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / };
497 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / series.processData.apply(fakeSeries);
498  
499 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / fakeAxis.series.push(fakeSeries);
500 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / });
501  
502 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Run beforeSetTickPositions to compute the ordinalPositions
503 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / axis.beforeSetTickPositions.apply(fakeAxis);
504  
505 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Cache it
506 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ordinalIndex[key] = fakeAxis.ordinalPositions;
507 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
508 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / return ordinalIndex[key];
509 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / },
510  
511 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / /**
512 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * Find the factor to estimate how wide the plot area would have been if ordinal
513 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * gaps were included. This value is used to compute an imagined plot width in order
514 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * to establish the data grouping interval.
515 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / *
516 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * A real world case is the intraday-candlestick
517 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * example. Without this logic, it would show the correct data grouping when viewing
518 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * a range within each day, but once moving the range to include the gap between two
519 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * days, the interval would include the cut-away night hours and the data grouping
520 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * would be wrong. So the below method tries to compensate by identifying the most
521 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * common point interval, in this case days.
522 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / *
523 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * An opposite case is presented in issue #718. We have a long array of daily data,
524 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * then one point is appended one hour after the last point. We expect the data grouping
525 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * not to change.
526 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / *
527 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * In the future, if we find cases where this estimation doesn't work optimally, we
528 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * might need to add a second pass to the data grouping logic, where we do another run
529 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * with a greater interval if the number of data groups is more than a certain fraction
530 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * of the desired group count.
531 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / */
532 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / getGroupIntervalFactor: function(xMin, xMax, series) {
533 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / var i,
534 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / processedXData = series.processedXData,
535 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / len = processedXData.length,
536 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / distances = [],
537 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / median,
538 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / groupIntervalFactor = this.groupIntervalFactor;
539  
540 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Only do this computation for the first series, let the other inherit it (#2416)
541 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (!groupIntervalFactor) {
542  
543 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Register all the distances in an array
544 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / for (i = 0; i < len - 1; i++) {
545 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / distances[i] = processedXData[i + 1] - processedXData[i];
546 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
547  
548 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Sort them and find the median
549 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / distances.sort(function(a, b) {
550 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / return a - b;
551 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / });
552 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / median = distances[Math.floor(len / 2)];
553  
554 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Compensate for series that don't extend through the entire axis extent. #1675.
555 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / xMin = Math.max(xMin, processedXData[0]);
556 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / xMax = Math.min(xMax, processedXData[len - 1]);
557  
558 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / this.groupIntervalFactor = groupIntervalFactor = (len * median) / (xMax - xMin);
559 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
560  
561 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Return the factor needed for data grouping
562 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / return groupIntervalFactor;
563 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / },
564  
565 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / /**
566 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / * Make the tick intervals closer because the ordinal gaps make the ticks spread out or cluster
567 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / */
568 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / postProcessTickInterval: function(tickInterval) {
569 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Problem: http://jsfiddle.net/highcharts/FQm4E/1/
570 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // This is a case where this algorithm doesn't work optimally. In this case, the
571 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // tick labels are spread out per week, but all the gaps reside within weeks. So
572 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // we have a situation where the labels are courser than the ordinal gaps, and
573 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // thus the tick interval should not be altered
574 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / var ordinalSlope = this.ordinalSlope,
575 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ret;
576  
577  
578 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (ordinalSlope) {
579 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (!this.options.breaks) {
580 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ret = tickInterval / (ordinalSlope / this.closestPointRange);
581 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / } else {
582 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ret = this.closestPointRange;
583 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
584 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / } else {
585 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ret = tickInterval;
586 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
587 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / return ret;
588 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
589 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / });
590  
591 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Record this to prevent overwriting by broken-axis module (#5979)
592 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / Axis.prototype.ordinal2lin = Axis.prototype.val2lin;
593  
594 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Extending the Chart.pan method for ordinal axes
595 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / wrap(Chart.prototype, 'pan', function(proceed, e) {
596 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / var chart = this,
597 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / xAxis = chart.xAxis[0],
598 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / chartX = e.chartX,
599 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / runBase = false;
600  
601 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (xAxis.options.ordinal && xAxis.series.length) {
602  
603 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / var mouseDownX = chart.mouseDownX,
604 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / extremes = xAxis.getExtremes(),
605 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / dataMax = extremes.dataMax,
606 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / min = extremes.min,
607 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / max = extremes.max,
608 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / trimmedRange,
609 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / hoverPoints = chart.hoverPoints,
610 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / closestPointRange = xAxis.closestPointRange,
611 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / pointPixelWidth = xAxis.translationSlope * (xAxis.ordinalSlope || closestPointRange),
612 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / movedUnits = (mouseDownX - chartX) / pointPixelWidth, // how many ordinal units did we move?
613 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / extendedAxis = {
614 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ordinalPositions: xAxis.getExtendedPositions()
615 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }, // get index of all the chart's points
616 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / ordinalPositions,
617 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / searchAxisLeft,
618 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / lin2val = xAxis.lin2val,
619 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / val2lin = xAxis.val2lin,
620 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / searchAxisRight;
621  
622 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (!extendedAxis.ordinalPositions) { // we have an ordinal axis, but the data is equally spaced
623 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / runBase = true;
624  
625 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / } else if (Math.abs(movedUnits) > 1) {
626  
627 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / // Remove active points for shared tooltip
628 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (hoverPoints) {
629 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / each(hoverPoints, function(point) {
630 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / point.setState();
631 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / });
632 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / }
633  
634 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { / if (movedUnits < 0) {
635 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { searchAxisLeft = extendedAxis;
636 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { searchAxisRight = xAxis.ordinalPositions ? xAxis : extendedAxis;
637 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { } else {
638 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { searchAxisLeft = xAxis.ordinalPositions ? xAxis : extendedAxis;
639 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { searchAxisRight = extendedAxis;
640 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { }
641  
642 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { // In grouped data series, the last ordinal position represents the grouped data, which is
643 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { // to the left of the real data max. If we don't compensate for this, we will be allowed
644 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { // to pan grouped data series passed the right of the plot area.
645 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { ordinalPositions = searchAxisRight.ordinalPositions;
646 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { if (dataMax > ordinalPositions[ordinalPositions.length - 1]) {
647 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { ordinalPositions.push(dataMax);
648 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { }
649  
650 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { // Get the new min and max values by getting the ordinal index for the current extreme,
651 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { // then add the moved units and translate back to values. This happens on the
652 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { // extended ordinal positions if the new position is out of range, else it happens
653 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { // on the current x axis which is smaller and faster.
654 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { chart.fixedRange = max - min;
655 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { trimmedRange = xAxis.toFixedRange(null, null,
656 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { lin2val.apply(searchAxisLeft, [
657 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { val2lin.apply(searchAxisLeft, [min, true]) + movedUnits, // the new index
658 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { true // translate from index
659 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { ]),
660 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { lin2val.apply(searchAxisRight, [
661 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { val2lin.apply(searchAxisRight, [max, true]) + movedUnits, // the new index
662 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { true // translate from index
663 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { ])
664 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { );
665  
666 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { // Apply it if it is within the available data range
667 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) { if (trimmedRange.min >= Math.min(extremes.dataMin, min) && trimmedRange.max <= Math.max(dataMax, max)) {
668 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { xAxis.setExtremes(trimmedRange.min, trimmedRange.max, true, false, {
669 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { trigger: 'pan'
670 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
671 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
672  
673 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { chart.mouseDownX = chartX; // set new reference for next run
674 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { css(chart.container, {
675 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { cursor: 'move'
676 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
677 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
678  
679 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else {
680 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { runBase = true;
681 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
682  
683 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // revert to the linear chart.pan version
684 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (runBase) {
685 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // call the original function
686 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { proceed.apply(this, Array.prototype.slice.call(arguments, 1));
687 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
688 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
689  
690 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { /* ****************************************************************************
691 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { * End ordinal axis logic *
692 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { *****************************************************************************/
693  
694 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }(Highcharts));
695 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { (function(H) {
696 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { /**
697 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { * (c) 2009-2017 Torstein Honsi
698 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { *
699 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { * License: www.highcharts.com/license
700 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { */
701  
702 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var pick = H.pick,
703 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { wrap = H.wrap,
704 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { each = H.each,
705 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { extend = H.extend,
706 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { isArray = H.isArray,
707 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { fireEvent = H.fireEvent,
708 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { Axis = H.Axis,
709 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { Series = H.Series;
710  
711 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { function stripArguments() {
712 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { return Array.prototype.slice.call(arguments, 1);
713 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
714  
715 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { extend(Axis.prototype, {
716 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { isInBreak: function(brk, val) {
717 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var ret,
718 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { repeat = brk.repeat || Infinity,
719 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { from = brk.from,
720 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { length = brk.to - brk.from,
721 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { test = (val >= from ? (val - from) % repeat : repeat - ((from - val) % repeat));
722  
723 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (!brk.inclusive) {
724 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { ret = test < length && test !== 0;
725 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else {
726 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { ret = test <= length;
727 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
728 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { return ret;
729 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { },
730  
731 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { isInAnyBreak: function(val, testKeep) {
732  
733 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var breaks = this.options.breaks,
734 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { i = breaks && breaks.length,
735 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { inbrk,
736 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { keep,
737 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { ret;
738  
739  
740 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (i) {
741  
742 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { while (i--) {
743 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (this.isInBreak(breaks[i], val)) {
744 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { inbrk = true;
745 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (!keep) {
746 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { keep = pick(breaks[i].showPoints, this.isXAxis ? false : true);
747 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
748 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
749 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
750  
751 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (inbrk && testKeep) {
752 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { ret = inbrk && !keep;
753 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else {
754 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { ret = inbrk;
755 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
756 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
757 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { return ret;
758 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
759 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
760  
761 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { wrap(Axis.prototype, 'setTickPositions', function(proceed) {
762 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { proceed.apply(this, Array.prototype.slice.call(arguments, 1));
763  
764 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (this.options.breaks) {
765 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var axis = this,
766 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { tickPositions = this.tickPositions,
767 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { info = this.tickPositions.info,
768 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { newPositions = [],
769 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { i;
770  
771 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { for (i = 0; i < tickPositions.length; i++) {
772 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (!axis.isInAnyBreak(tickPositions[i])) {
773 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { newPositions.push(tickPositions[i]);
774 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
775 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
776  
777 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { this.tickPositions = newPositions;
778 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { this.tickPositions.info = info;
779 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
780 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
781  
782 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { wrap(Axis.prototype, 'init', function(proceed, chart, userOptions) {
783 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var axis = this,
784 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breaks;
785 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // Force Axis to be not-ordinal when breaks are defined
786 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (userOptions.breaks && userOptions.breaks.length) {
787 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { userOptions.ordinal = false;
788 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
789 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { proceed.call(this, chart, userOptions);
790 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breaks = this.options.breaks;
791 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.isBroken = (isArray(breaks) && !!breaks.length);
792 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (axis.isBroken) {
793 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.val2lin = function(val) {
794 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var nval = val,
795 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { brk,
796 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { i;
797  
798 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { for (i = 0; i < axis.breakArray.length; i++) {
799 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { brk = axis.breakArray[i];
800 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (brk.to <= val) {
801 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { nval -= brk.len;
802 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else if (brk.from >= val) {
803 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { break;
804 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else if (axis.isInBreak(brk, val)) {
805 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { nval -= (val - brk.from);
806 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { break;
807 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
808 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
809  
810 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { return nval;
811 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { };
812  
813 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.lin2val = function(val) {
814 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var nval = val,
815 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { brk,
816 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { i;
817  
818 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { for (i = 0; i < axis.breakArray.length; i++) {
819 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { brk = axis.breakArray[i];
820 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (brk.from >= nval) {
821 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { break;
822 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else if (brk.to < nval) {
823 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { nval += brk.len;
824 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else if (axis.isInBreak(brk, nval)) {
825 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { nval += brk.len;
826 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
827 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
828 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { return nval;
829 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { };
830  
831 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.setExtremes = function(newMin, newMax, redraw, animation, eventArguments) {
832 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // If trying to set extremes inside a break, extend it to before and after the break ( #3857 )
833 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { while (this.isInAnyBreak(newMin)) {
834 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { newMin -= this.closestPointRange;
835 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
836 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { while (this.isInAnyBreak(newMax)) {
837 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { newMax -= this.closestPointRange;
838 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
839 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { Axis.prototype.setExtremes.call(this, newMin, newMax, redraw, animation, eventArguments);
840 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { };
841  
842 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.setAxisTranslation = function(saveOld) {
843 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { Axis.prototype.setAxisTranslation.call(this, saveOld);
844  
845 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var breaks = axis.options.breaks,
846 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breakArrayT = [], // Temporary one
847 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breakArray = [],
848 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { length = 0,
849 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { inBrk,
850 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { repeat,
851 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { min = axis.userMin || axis.min,
852 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { max = axis.userMax || axis.max,
853 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { pointRangePadding = pick(axis.pointRangePadding, 0),
854 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { start,
855 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { i;
856  
857 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // Min & max check (#4247)
858 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { each(breaks, function(brk) {
859 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { repeat = brk.repeat || Infinity;
860 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (axis.isInBreak(brk, min)) {
861 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { min += (brk.to % repeat) - (min % repeat);
862 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
863 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (axis.isInBreak(brk, max)) {
864 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { max -= (max % repeat) - (brk.from % repeat);
865 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
866 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
867  
868 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // Construct an array holding all breaks in the axis
869 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { each(breaks, function(brk) {
870 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { start = brk.from;
871 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { repeat = brk.repeat || Infinity;
872  
873 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { while (start - repeat > min) {
874 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { start -= repeat;
875 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
876 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { while (start < min) {
877 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { start += repeat;
878 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
879  
880 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { for (i = start; i < max; i += repeat) {
881 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breakArrayT.push({
882 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { value: i,
883 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { move: 'in'
884 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
885 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breakArrayT.push({
886 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { value: i + (brk.to - brk.from),
887 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { move: 'out',
888 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { size: brk.breakSize
889 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
890 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
891 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
892  
893 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breakArrayT.sort(function(a, b) {
894 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var ret;
895 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (a.value === b.value) {
896 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { ret = (a.move === 'in' ? 0 : 1) - (b.move === 'in' ? 0 : 1);
897 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else {
898 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { ret = a.value - b.value;
899 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
900 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { return ret;
901 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
902  
903 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // Simplify the breaks
904 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { inBrk = 0;
905 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { start = min;
906  
907 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { each(breakArrayT, function(brk) {
908 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { inBrk += (brk.move === 'in' ? 1 : -1);
909  
910 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (inBrk === 1 && brk.move === 'in') {
911 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { start = brk.value;
912 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
913 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (inBrk === 0) {
914 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breakArray.push({
915 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { from: start,
916 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { to: brk.value,
917 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { len: brk.value - start - (brk.size || 0)
918 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
919 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { length += brk.value - start - (brk.size || 0);
920 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
921 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
922  
923 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.breakArray = breakArray;
924  
925 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // Used with staticScale, and below, the actual axis length when
926 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { // breaks are substracted.
927 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.unitLength = max - min - length + pointRangePadding;
928  
929 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { fireEvent(axis, 'afterBreaks');
930  
931 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (axis.options.staticScale) {
932 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.transA = axis.options.staticScale;
933 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { } else if (axis.unitLength) {
934 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.transA *= (max - axis.min + pointRangePadding) /
935 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.unitLength;
936 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
937  
938 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (pointRangePadding) {
939 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.minPixelPadding = axis.transA * axis.minPointOffset;
940 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
941  
942 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.min = min;
943 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { axis.max = max;
944 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { };
945 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
946 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
947  
948 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { wrap(Series.prototype, 'generatePoints', function(proceed) {
949  
950 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { proceed.apply(this, stripArguments(arguments));
951  
952 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var series = this,
953 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { xAxis = series.xAxis,
954 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { yAxis = series.yAxis,
955 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { points = series.points,
956 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { point,
957 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { i = points.length,
958 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { connectNulls = series.options.connectNulls,
959 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { nullGap;
960  
961  
962 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (xAxis && yAxis && (xAxis.options.breaks || yAxis.options.breaks)) {
963 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { while (i--) {
964 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { point = points[i];
965  
966 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { nullGap = point.y === null && connectNulls === false; // respect nulls inside the break (#4275)
967 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (!nullGap && (xAxis.isInAnyBreak(point.x, true) || yAxis.isInAnyBreak(point.y, true))) {
968 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { points.splice(i, 1);
969 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (this.data[i]) {
970 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { this.data[i].destroyElements(); // removes the graphics for this point if they exist
971 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
972 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
973 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
974 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
975  
976 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { });
977  
978 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { function drawPointsWrapped(proceed) {
979 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { proceed.apply(this);
980 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { this.drawBreaks(this.xAxis, ['x']);
981 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { this.drawBreaks(this.yAxis, pick(this.pointArrayMap, ['y']));
982 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
983  
984 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { H.Series.prototype.drawBreaks = function(axis, keys) {
985 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { var series = this,
986 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { points = series.points,
987 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breaks,
988 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { threshold,
989 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { eventName,
990 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { y;
991  
992 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if (!axis) {
993 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { return; // #5950
994 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { }
995  
996 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { each(keys, function(key) {
997 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { breaks = axis.breakArray || [];
998 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { threshold = axis.isXAxis ? axis.min : pick(series.options.threshold, axis.min);
999 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { each(points, function(point) {
1000 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { y = pick(point['stack' + key.toUpperCase()], point[key]);
1001 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { each(breaks, function(brk) {
1002 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { eventName = false;
1003  
1004 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) { if ((threshold < brk.from && y > brk.to) || (threshold > brk.from && y < brk.from)) {
1005 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) { eventName = 'pointBreak';
1006 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) { } else if ((threshold < brk.from && y > brk.from && y < brk.to) || (threshold > brk.from && y > brk.to && y < brk.from)) { // point falls inside the break
1007 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / eventName = 'pointInBreak';
1008 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1009 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / if (eventName) {
1010 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / fireEvent(axis, eventName, {
1011 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / point: point,
1012 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / brk: brk
1013 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / });
1014 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1015 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / });
1016 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / });
1017 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / });
1018 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / };
1019  
1020  
1021 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / /**
1022 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * Extend getGraphPath by identifying gaps in the data so that we can draw a gap
1023 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * in the line or area. This was moved from ordinal axis module to broken axis
1024 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * module as of #5045.
1025 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / */
1026 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / H.Series.prototype.gappedPath = function() {
1027 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / var gapSize = this.options.gapSize,
1028 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / points = this.points.slice(),
1029 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / i = points.length - 1;
1030  
1031 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / if (gapSize && i > 0) { // #5008
1032  
1033 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // extension for ordinal breaks
1034 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / while (i--) {
1035 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / if (points[i + 1].x - points[i].x > this.closestPointRange * gapSize) {
1036 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / points.splice( // insert after this one
1037 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / i + 1,
1038 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 0, {
1039 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / isNull: true
1040 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1041 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / );
1042 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1043 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1044 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1045  
1046 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // Call base method
1047 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return this.getGraphPath(points);
1048 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / };
1049  
1050 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / wrap(H.seriesTypes.column.prototype, 'drawPoints', drawPointsWrapped);
1051 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / wrap(H.Series.prototype, 'drawPoints', drawPointsWrapped);
1052  
1053 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }(Highcharts));
1054 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / (function() {
1055  
1056  
1057 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }());
1058 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / (function(H) {
1059 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / /**
1060 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * (c) 2010-2017 Torstein Honsi
1061 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / *
1062 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * License: www.highcharts.com/license
1063 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / */
1064 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / var arrayMax = H.arrayMax,
1065 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / arrayMin = H.arrayMin,
1066 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / Axis = H.Axis,
1067 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / defaultPlotOptions = H.defaultPlotOptions,
1068 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / defined = H.defined,
1069 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / each = H.each,
1070 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / extend = H.extend,
1071 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / format = H.format,
1072 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / isNumber = H.isNumber,
1073 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / merge = H.merge,
1074 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / pick = H.pick,
1075 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / Point = H.Point,
1076 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / Series = H.Series,
1077 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / Tooltip = H.Tooltip,
1078 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / wrap = H.wrap;
1079  
1080 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / /* ****************************************************************************
1081 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * Start data grouping module *
1082 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ******************************************************************************/
1083  
1084 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / var seriesProto = Series.prototype,
1085 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / baseProcessData = seriesProto.processData,
1086 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / baseGeneratePoints = seriesProto.generatePoints,
1087 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / baseDestroy = seriesProto.destroy,
1088  
1089 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / commonOptions = {
1090 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximation: 'average', // average, open, high, low, close, sum
1091 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / //enabled: null, // (true for stock charts, false for basic),
1092 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / //forced: undefined,
1093 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupPixelWidth: 2,
1094 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // the first one is the point or start value, the second is the start value if we're dealing with range,
1095 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // the third one is the end value if dealing with a range
1096 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / dateTimeLabelFormats: {
1097 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / millisecond: ['%A, %b %e, %H:%M:%S.%L', '%A, %b %e, %H:%M:%S.%L', '-%H:%M:%S.%L'],
1098 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / second: ['%A, %b %e, %H:%M:%S', '%A, %b %e, %H:%M:%S', '-%H:%M:%S'],
1099 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / minute: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],
1100 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / hour: ['%A, %b %e, %H:%M', '%A, %b %e, %H:%M', '-%H:%M'],
1101 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / day: ['%A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],
1102 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / week: ['Week from %A, %b %e, %Y', '%A, %b %e', '-%A, %b %e, %Y'],
1103 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / month: ['%B %Y', '%B', '-%B %Y'],
1104 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / year: ['%Y', '%Y', '-%Y']
1105 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1106 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // smoothed = false, // enable this for navigator series only
1107 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1108  
1109 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / specificOptions = { // extends common options
1110 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / line: {},
1111 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / spline: {},
1112 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / area: {},
1113 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / areaspline: {},
1114 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / column: {
1115 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximation: 'sum',
1116 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupPixelWidth: 10
1117 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1118 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / arearange: {
1119 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximation: 'range'
1120 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1121 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / areasplinerange: {
1122 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximation: 'range'
1123 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1124 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / columnrange: {
1125 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximation: 'range',
1126 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupPixelWidth: 10
1127 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1128 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / candlestick: {
1129 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximation: 'ohlc',
1130 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupPixelWidth: 10
1131 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1132 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ohlc: {
1133 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximation: 'ohlc',
1134 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupPixelWidth: 5
1135 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1136 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1137  
1138 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // units are defined in a separate array to allow complete overriding in case of a user option
1139 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / defaultDataGroupingUnits = H.defaultDataGroupingUnits = [
1140 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [
1141 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 'millisecond', // unit name
1142 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [1, 2, 5, 10, 20, 25, 50, 100, 200, 500] // allowed multiples
1143 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ],
1144 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [
1145 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 'second', [1, 2, 5, 10, 15, 30]
1146 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ],
1147 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [
1148 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 'minute', [1, 2, 5, 10, 15, 30]
1149 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ],
1150 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [
1151 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 'hour', [1, 2, 3, 4, 6, 8, 12]
1152 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ],
1153 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [
1154 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 'day', [1]
1155 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ],
1156 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [
1157 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 'week', [1]
1158 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ],
1159 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [
1160 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 'month', [1, 3, 6]
1161 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ],
1162 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / [
1163 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / 'year',
1164 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / null
1165 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ]
1166 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ],
1167  
1168  
1169 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / /**
1170 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * Define the available approximation types. The data grouping
1171 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * approximations takes an array or numbers as the first parameter. In case
1172 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * of ohlc, four arrays are sent in as four parameters. Each array consists
1173 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * only of numbers. In case null values belong to the group, the property
1174 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * .hasNulls will be set to true on the array.
1175 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / */
1176 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximations = {
1177 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / sum: function(arr) {
1178 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / var len = arr.length,
1179 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ret;
1180  
1181 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // 1. it consists of nulls exclusively
1182 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / if (!len && arr.hasNulls) {
1183 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ret = null;
1184 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // 2. it has a length and real values
1185 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / } else if (len) {
1186 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ret = 0;
1187 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / while (len--) {
1188 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ret += arr[len];
1189 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1190 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1191 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // 3. it has zero length, so just return undefined
1192 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // => doNothing()
1193  
1194 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return ret;
1195 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1196 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / average: function(arr) {
1197 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / var len = arr.length,
1198 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ret = approximations.sum(arr);
1199  
1200 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // If we have a number, return it divided by the length. If not,
1201 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // return null or undefined based on what the sum method finds.
1202 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / if (isNumber(ret) && len) {
1203 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ret = ret / len;
1204 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1205  
1206 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return ret;
1207 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1208 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // The same as average, but for series with multiple values, like area
1209 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // ranges.
1210 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / averages: function() { // #5479
1211 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / var ret = [];
1212  
1213 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / each(arguments, function(arr) {
1214 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ret.push(approximations.average(arr));
1215 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / });
1216  
1217 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return ret;
1218 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1219 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / open: function(arr) {
1220 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return arr.length ? arr[0] : (arr.hasNulls ? null : undefined);
1221 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1222 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / high: function(arr) {
1223 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return arr.length ? arrayMax(arr) : (arr.hasNulls ? null : undefined);
1224 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1225 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / low: function(arr) {
1226 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return arr.length ? arrayMin(arr) : (arr.hasNulls ? null : undefined);
1227 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1228 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / close: function(arr) {
1229 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return arr.length ? arr[arr.length - 1] : (arr.hasNulls ? null : undefined);
1230 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1231 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // ohlc and range are special cases where a multidimensional array is input and an array is output
1232 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ohlc: function(open, high, low, close) {
1233 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / open = approximations.open(open);
1234 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / high = approximations.high(high);
1235 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / low = approximations.low(low);
1236 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / close = approximations.close(close);
1237  
1238 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / if (isNumber(open) || isNumber(high) || isNumber(low) || isNumber(close)) {
1239 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return [open, high, low, close];
1240 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1241 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // else, return is undefined
1242 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / },
1243 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / range: function(low, high) {
1244 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / low = approximations.low(low);
1245 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / high = approximations.high(high);
1246  
1247 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / if (isNumber(low) || isNumber(high)) {
1248 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return [low, high];
1249 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / } else if (low === null && high === null) {
1250 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / return null;
1251 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1252 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // else, return is undefined
1253 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1254 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / };
1255  
1256  
1257 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / /**
1258 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * Takes parallel arrays of x and y data and groups the data into intervals
1259 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / * defined by groupPositions, a collection of starting x values for each group.
1260 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / */
1261 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / seriesProto.groupData = function(xData, yData, groupPositions, approximation) {
1262 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / var series = this,
1263 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / data = series.data,
1264 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / dataOptions = series.options.data,
1265 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupedXData = [],
1266 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupedYData = [],
1267 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupMap = [],
1268 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / dataLength = xData.length,
1269 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / pointX,
1270 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / pointY,
1271 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / groupedY,
1272 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // when grouping the fake extended axis for panning,
1273 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // we don't need to consider y
1274 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / handleYData = !!yData,
1275 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / values = [],
1276 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximationFn = typeof approximation === 'function' ?
1277 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximation :
1278 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximations[approximation] ||
1279 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // if the approximation is not found use default series type
1280 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // approximation (#2914)
1281 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / (
1282 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / specificOptions[series.type] &&
1283 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / approximations[specificOptions[series.type].approximation]
1284 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / ) || approximations[commonOptions.approximation],
1285 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / pointArrayMap = series.pointArrayMap,
1286 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / pointArrayMapLength = pointArrayMap && pointArrayMap.length,
1287 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / pos = 0,
1288 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / start = 0,
1289 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / valuesLen,
1290 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / i, j;
1291  
1292 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // Calculate values array size from pointArrayMap length
1293 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / if (pointArrayMapLength) {
1294 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / each(pointArrayMap, function() {
1295 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / values.push([]);
1296 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / });
1297 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / } else {
1298 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / values.push([]);
1299 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / }
1300 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / valuesLen = pointArrayMapLength || 1;
1301  
1302 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / // Start with the first point within the X axis range (#2696)
1303 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { / for (i = 0; i <= dataLength; i++) {
1304 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) { if (xData[i] >= groupPositions[0]) {
1305 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) { break;
1306 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) { }
1307 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) { }
1308  
1309 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) { for (i; i <= dataLength; i++) {
1310  
1311 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { // when a new group is entered, summarize and initiate
1312 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { // the previous group
1313 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { while ((
1314 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { groupPositions[pos + 1] !== undefined &&
1315 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { xData[i] >= groupPositions[pos + 1]
1316 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { ) || i === dataLength) { // get the last group
1317  
1318 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { // get group x and y
1319 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { pointX = groupPositions[pos];
1320 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { series.dataGroupInfo = {
1321 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { start: start,
1322 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { length: values[0].length
1323 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { };
1324 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { groupedY = approximationFn.apply(series, values);
1325  
1326 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { // push the grouped data
1327 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { if (groupedY !== undefined) {
1328 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { groupedXData.push(pointX);
1329 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { groupedYData.push(groupedY);
1330 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { groupMap.push(series.dataGroupInfo);
1331 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { }
1332  
1333 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { // reset the aggregate arrays
1334 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { start = i;
1335 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) { for (j = 0; j < valuesLen; j++) {
1336 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { values[j].length = 0; // faster than values[j] = []
1337 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { values[j].hasNulls = false;
1338 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { }
1339  
1340 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { // Advance on the group positions
1341 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { pos += 1;
1342  
1343 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { // don't loop beyond the last group
1344 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { if (i === dataLength) {
1345 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { break;
1346 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { }
1347 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { }
1348  
1349 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { // break out
1350 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { if (i === dataLength) {
1351 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { break;
1352 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { }
1353  
1354 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { // for each raw data point, push it to an array that contains all values
1355 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { // for this specific group
1356 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { if (pointArrayMap) {
1357  
1358 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { var index = series.cropStart + i,
1359 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { point = (data && data[index]) ||
1360 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { series.pointClass.prototype.applyOptions.apply({
1361 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { series: series
1362 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { }, [dataOptions[index]]),
1363 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { val;
1364  
1365 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) { for (j = 0; j < pointArrayMapLength; j++) {
1366 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { val = point[pointArrayMap[j]];
1367 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { if (isNumber(val)) {
1368 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { values[j].push(val);
1369 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { } else if (val === null) {
1370 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { values[j].hasNulls = true;
1371 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { }
1372 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { }
1373  
1374 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { } else {
1375 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { pointY = handleYData ? yData[i] : null;
1376  
1377 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { if (isNumber(pointY)) {
1378 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { values[0].push(pointY);
1379 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { } else if (pointY === null) {
1380 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { values[0].hasNulls = true;
1381 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { }
1382 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { }
1383 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { }
1384  
1385 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { return [groupedXData, groupedYData, groupMap];
1386 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { };
1387  
1388 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { /**
1389 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { * Extend the basic processData method, that crops the data to the current zoom
1390 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { * range, with data grouping logic.
1391 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { */
1392 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { seriesProto.processData = function() {
1393 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { var series = this,
1394 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { chart = series.chart,
1395 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { options = series.options,
1396 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { dataGroupingOptions = options.dataGrouping,
1397 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupingEnabled = series.allowDG !== false && dataGroupingOptions &&
1398 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { pick(dataGroupingOptions.enabled, chart.options.isStock),
1399 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { visible = series.visible || !chart.options.chart.ignoreHiddenSeries,
1400 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { hasGroupedData,
1401 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { skip;
1402  
1403 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { // run base method
1404 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.forceCrop = groupingEnabled; // #334
1405 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.groupPixelWidth = null; // #2110
1406 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.hasProcessed = true; // #2692
1407  
1408 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { // skip if processData returns false or if grouping is disabled (in that order)
1409 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { skip = baseProcessData.apply(series, arguments) === false || !groupingEnabled;
1410 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { if (!skip) {
1411 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.destroyGroupedData();
1412  
1413 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { var i,
1414 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { processedXData = series.processedXData,
1415 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { processedYData = series.processedYData,
1416 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { plotSizeX = chart.plotSizeX,
1417 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { xAxis = series.xAxis,
1418 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { ordinal = xAxis.options.ordinal,
1419 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupPixelWidth = series.groupPixelWidth = xAxis.getGroupPixelWidth && xAxis.getGroupPixelWidth();
1420  
1421 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { // Execute grouping if the amount of points is greater than the limit defined in groupPixelWidth
1422 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { if (groupPixelWidth) {
1423 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { hasGroupedData = true;
1424  
1425 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.isDirty = true; // force recreation of point instances in series.translate, #5699
1426 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.points = null; // #6709
1427  
1428 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { var extremes = xAxis.getExtremes(),
1429 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { xMin = extremes.min,
1430 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { xMax = extremes.max,
1431 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupIntervalFactor = (ordinal && xAxis.getGroupIntervalFactor(xMin, xMax, series)) || 1,
1432 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { interval = (groupPixelWidth * (xMax - xMin) / plotSizeX) * groupIntervalFactor,
1433 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupPositions = xAxis.getTimeTicks(
1434 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { xAxis.normalizeTimeTickInterval(interval, dataGroupingOptions.units || defaultDataGroupingUnits),
1435 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { Math.min(xMin, processedXData[0]), // Processed data may extend beyond axis (#4907)
1436 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { Math.max(xMax, processedXData[processedXData.length - 1]),
1437 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { xAxis.options.startOfWeek,
1438 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { processedXData,
1439 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.closestPointRange
1440 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { ),
1441 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupedData = seriesProto.groupData.apply(series, [processedXData, processedYData, groupPositions, dataGroupingOptions.approximation]),
1442 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupedXData = groupedData[0],
1443 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupedYData = groupedData[1];
1444  
1445 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { // prevent the smoothed data to spill out left and right, and make
1446 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { // sure data is not shifted to the left
1447 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { if (dataGroupingOptions.smoothed) {
1448 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { i = groupedXData.length - 1;
1449 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupedXData[i] = Math.min(groupedXData[i], xMax);
1450 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { while (i-- && i > 0) {
1451 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupedXData[i] += interval / 2;
1452 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { }
1453 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { groupedXData[0] = Math.max(groupedXData[0], xMin);
1454 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { }
1455  
1456 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { // record what data grouping values were used
1457 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.currentDataGrouping = groupPositions.info;
1458 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.closestPointRange = groupPositions.info.totalRange;
1459 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { series.groupMap = groupedData[2];
1460  
1461 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { // Make sure the X axis extends to show the first group (#2533)
1462 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { // But only for visible series (#5493, #6393)
1463 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) { if (defined(groupedXData[0]) && groupedXData[0] < xAxis.dataMin && visible) {
1464 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (xAxis.min === xAxis.dataMin) {
1465 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xAxis.min = groupedXData[0];
1466 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1467 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xAxis.dataMin = groupedXData[0];
1468 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1469  
1470 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // set series props
1471 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { series.processedXData = groupedXData;
1472 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { series.processedYData = groupedYData;
1473 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { } else {
1474 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { series.currentDataGrouping = series.groupMap = null;
1475 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1476 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { series.hasGroupedData = hasGroupedData;
1477 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1478 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { };
1479  
1480 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1481 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Destroy the grouped data points. #622, #740
1482 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1483 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { seriesProto.destroyGroupedData = function() {
1484  
1485 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { var groupedData = this.groupedData;
1486  
1487 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // clear previous groups
1488 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { each(groupedData || [], function(point, i) {
1489 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (point) {
1490 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { groupedData[i] = point.destroy ? point.destroy() : null;
1491 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1492 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { });
1493 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { this.groupedData = null;
1494 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { };
1495  
1496 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1497 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Override the generatePoints method by adding a reference to grouped data
1498 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1499 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { seriesProto.generatePoints = function() {
1500  
1501 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { baseGeneratePoints.apply(this);
1502  
1503 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // record grouped data in order to let it be destroyed the next time processData runs
1504 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { this.destroyGroupedData(); // #622
1505 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { this.groupedData = this.hasGroupedData ? this.points : null;
1506 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { };
1507  
1508 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1509 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Override point prototype to throw a warning when trying to update grouped points
1510 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1511 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { wrap(Point.prototype, 'update', function(proceed) {
1512 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (this.dataGroup) {
1513 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { H.error(24);
1514 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { } else {
1515 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { proceed.apply(this, [].slice.call(arguments, 1));
1516 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1517 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { });
1518  
1519 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1520 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Extend the original method, make the tooltip's header reflect the grouped range
1521 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1522 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { wrap(Tooltip.prototype, 'tooltipFooterHeaderFormatter', function(proceed, labelConfig, isFooter) {
1523 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { var tooltip = this,
1524 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { series = labelConfig.series,
1525 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { options = series.options,
1526 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { tooltipOptions = series.tooltipOptions,
1527 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dataGroupingOptions = options.dataGrouping,
1528 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xDateFormat = tooltipOptions.xDateFormat,
1529 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xDateFormatEnd,
1530 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xAxis = series.xAxis,
1531 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dateFormat = H.dateFormat,
1532 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { currentDataGrouping,
1533 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dateTimeLabelFormats,
1534 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { labelFormats,
1535 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { formattedKey;
1536  
1537 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // apply only to grouped series
1538 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (xAxis && xAxis.options.type === 'datetime' && dataGroupingOptions && isNumber(labelConfig.key)) {
1539  
1540 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // set variables
1541 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { currentDataGrouping = series.currentDataGrouping;
1542 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dateTimeLabelFormats = dataGroupingOptions.dateTimeLabelFormats;
1543  
1544 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // if we have grouped data, use the grouping information to get the right format
1545 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (currentDataGrouping) {
1546 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { labelFormats = dateTimeLabelFormats[currentDataGrouping.unitName];
1547 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (currentDataGrouping.count === 1) {
1548 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xDateFormat = labelFormats[0];
1549 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { } else {
1550 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xDateFormat = labelFormats[1];
1551 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xDateFormatEnd = labelFormats[2];
1552 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1553 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // if not grouped, and we don't have set the xDateFormat option, get the best fit,
1554 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // so if the least distance between points is one minute, show it, but if the
1555 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // least distance is one day, skip hours and minutes etc.
1556 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { } else if (!xDateFormat && dateTimeLabelFormats) {
1557 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { xDateFormat = tooltip.getXDateFormat(labelConfig, tooltipOptions, xAxis);
1558 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1559  
1560 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // now format the key
1561 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { formattedKey = dateFormat(xDateFormat, labelConfig.key);
1562 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (xDateFormatEnd) {
1563 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { formattedKey += dateFormat(xDateFormatEnd, labelConfig.key + currentDataGrouping.totalRange - 1);
1564 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1565  
1566 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // return the replaced format
1567 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { return format(tooltipOptions[(isFooter ? 'footer' : 'header') + 'Format'], {
1568 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { point: extend(labelConfig.point, {
1569 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { key: formattedKey
1570 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }),
1571 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { series: series
1572 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { });
1573  
1574 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1575  
1576 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // else, fall back to the regular formatter
1577 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { return proceed.call(tooltip, labelConfig, isFooter);
1578 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { });
1579  
1580 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1581 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Extend the series destroyer
1582 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1583 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { seriesProto.destroy = function() {
1584 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { var series = this,
1585 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { groupedData = series.groupedData || [],
1586 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { i = groupedData.length;
1587  
1588 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { while (i--) {
1589 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (groupedData[i]) {
1590 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { groupedData[i].destroy();
1591 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1592 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1593 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { baseDestroy.apply(series);
1594 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { };
1595  
1596  
1597 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // Handle default options for data grouping. This must be set at runtime because some series types are
1598 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // defined after this.
1599 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { wrap(seriesProto, 'setOptions', function(proceed, itemOptions) {
1600  
1601 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { var options = proceed.call(this, itemOptions),
1602 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { type = this.type,
1603 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { plotOptions = this.chart.options.plotOptions,
1604 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { defaultOptions = defaultPlotOptions[type].dataGrouping;
1605  
1606 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (specificOptions[type]) { // #1284
1607 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (!defaultOptions) {
1608 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { defaultOptions = merge(commonOptions, specificOptions[type]);
1609 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1610  
1611 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { options.dataGrouping = merge(
1612 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { defaultOptions,
1613 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { plotOptions.series && plotOptions.series.dataGrouping, // #1228
1614 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { plotOptions[type].dataGrouping, // Set by the StockChart constructor
1615 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { itemOptions.dataGrouping
1616 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { );
1617 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1618  
1619 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (this.chart.options.isStock) {
1620 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { this.requireSorting = true;
1621 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1622  
1623 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { return options;
1624 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { });
1625  
1626  
1627 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1628 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * When resetting the scale reset the hasProccessed flag to avoid taking previous data grouping
1629 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * of neighbour series into accound when determining group pixel width (#2692).
1630 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1631 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { wrap(Axis.prototype, 'setScale', function(proceed) {
1632 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { proceed.call(this);
1633 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { each(this.series, function(series) {
1634 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { series.hasProcessed = false;
1635 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { });
1636 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { });
1637  
1638 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1639 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Get the data grouping pixel width based on the greatest defined individual width
1640 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * of the axis' series, and if whether one of the axes need grouping.
1641 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1642 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { Axis.prototype.getGroupPixelWidth = function() {
1643  
1644 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { var series = this.series,
1645 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { len = series.length,
1646 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { i,
1647 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { groupPixelWidth = 0,
1648 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { doGrouping = false,
1649 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dataLength,
1650 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dgOptions;
1651  
1652 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // If multiple series are compared on the same x axis, give them the same
1653 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // group pixel width (#334)
1654 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { i = len;
1655 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { while (i--) {
1656 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dgOptions = series[i].options.dataGrouping;
1657 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (dgOptions) {
1658 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { groupPixelWidth = Math.max(groupPixelWidth, dgOptions.groupPixelWidth);
1659  
1660 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1661 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1662  
1663 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // If one of the series needs grouping, apply it to all (#1634)
1664 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { i = len;
1665 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { while (i--) {
1666 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dgOptions = series[i].options.dataGrouping;
1667  
1668 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (dgOptions && series[i].hasProcessed) { // #2692
1669  
1670 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dataLength = (series[i].processedXData || series[i].data).length;
1671  
1672 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // Execute grouping if the amount of points is greater than the limit defined in groupPixelWidth
1673 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (series[i].groupPixelWidth || dataLength > (this.chart.plotSizeX / groupPixelWidth) || (dataLength && dgOptions.forced)) {
1674 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { doGrouping = true;
1675 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1676 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1677 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1678  
1679 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { return doGrouping ? groupPixelWidth : 0;
1680 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { };
1681  
1682 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1683 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Highstock only. Force data grouping on all the axis' series.
1684 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { *
1685 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * @param {SeriesDatagroupingOptions} [dataGrouping]
1686 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * A `dataGrouping` configuration. Use `false` to disable data grouping
1687 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * dynamically.
1688 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * @param {Boolean} [redraw=true]
1689 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Whether to redraw the chart or wait for a later call to {@link
1690 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * Chart#redraw}.
1691 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { *
1692 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * @function setDataGrouping
1693 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * @memberOf Axis.prototype
1694 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1695 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { Axis.prototype.setDataGrouping = function(dataGrouping, redraw) {
1696 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { var i;
1697  
1698 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { redraw = pick(redraw, true);
1699  
1700 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (!dataGrouping) {
1701 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dataGrouping = {
1702 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { forced: false,
1703 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { units: null
1704 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { };
1705 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1706  
1707 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // Axis is instantiated, update all series
1708 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (this instanceof Axis) {
1709 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { i = this.series.length;
1710 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { while (i--) {
1711 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { this.series[i].update({
1712 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { dataGrouping: dataGrouping
1713 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }, false);
1714 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1715  
1716 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { // Axis not yet instanciated, alter series options
1717 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { } else {
1718 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { each(this.chart.options.series, function(seriesOptions) {
1719 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { seriesOptions.dataGrouping = dataGrouping;
1720 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }, false);
1721 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1722  
1723 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { if (redraw) {
1724 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { this.chart.redraw();
1725 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }
1726 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { };
1727  
1728  
1729  
1730 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /* ****************************************************************************
1731 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * End data grouping module *
1732 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { ******************************************************************************/
1733  
1734 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { }(Highcharts));
1735 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { (function(H) {
1736 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1737 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * (c) 2010-2017 Torstein Honsi
1738 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { *
1739 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * License: www.highcharts.com/license
1740 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1741 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { var each = H.each,
1742 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { Point = H.Point,
1743 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { seriesType = H.seriesType,
1744 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { seriesTypes = H.seriesTypes;
1745  
1746 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { /**
1747 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * The ohlc series type.
1748 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { *
1749 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * @constructor seriesTypes.ohlc
1750 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { * @augments seriesTypes.column
1751 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { */
1752 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { seriesType('ohlc', 'column', {
1753 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { lineWidth: 1,
1754 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { tooltip: {
1755  
1756 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { pointFormat: '<span style="color:{point.color}">\u25CF</span> {series.name}b><br/>' +
1757 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) { 'Open: {point.open}
>' +
1758 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {
'High: {point.high}<br/>' +
1759 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {
'Low: {point.low}
>' +

1760 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

'Close: {point.close}<br/>'

1761  
1762 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

},

1763 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

threshold: null,

1764  
1765 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

states: {

1766 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

hover: {

1767 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

lineWidth: 3

1768 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

}

1769 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

},

1770 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

stickyTracking: true

1771 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

//upColor: undefined

1772  
1773  
1774 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

}, /** @lends seriesTypes.ohlc */ {

1775 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

directTouch: false,

1776 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

pointArrayMap: ['open', 'high', 'low', 'close'], // array point configs are mapped to this

1777 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

toYData: function(point) { // return a plain array for speedy calculation

1778 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

return [point.open, point.high, point.low, point.close];

1779 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

},

1780 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

pointValKey: 'close',

1781  
1782  
1783 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

pointAttrToOptions: {

1784 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

'stroke': 'color',

1785 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

'stroke-width': 'lineWidth'

1786 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

},

1787  
1788 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

/**

1789 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

* Postprocess mapping between options and SVG attributes

1790 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

*/

1791 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

pointAttribs: function(point, state) {

1792 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

var attribs = seriesTypes.column.prototype.pointAttribs.call(

1793 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

this,

1794 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

point,

1795 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

state

1796 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

),

1797 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

options = this.options;

1798  
1799 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

delete attribs.fill;

1800  
1801 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

if (!point.options.color &&

1802 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

options.upColor &&

1803 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

point.open < point.close

1804 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close ) {

1805 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close attribs.stroke = options.upColor;

1806 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1807  
1808 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close return attribs;

1809 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close },

1810  
1811  
1812 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

1813 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * Translate data points from raw values x and y to plotX and plotY

1814 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

1815 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close translate: function() {

1816 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var series = this,

1817 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close yAxis = series.yAxis,

1818 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close hasModifyValue = !!series.modifyValue,

1819 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close translated = ['plotOpen', 'plotHigh', 'plotLow', 'plotClose', 'yBottom']; // translate OHLC for

1820  
1821 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close seriesTypes.column.prototype.translate.apply(series);

1822  
1823 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // Do the translation

1824 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close each(series.points, function(point) {

1825 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close each([point.open, point.high, point.low, point.close, point.low], function(value, i) {

1826 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (value !== null) {

1827 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (hasModifyValue) {

1828 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close value = series.modifyValue(value);

1829 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1830 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close point[translated[i]] = yAxis.toPixels(value, true);

1831 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1832 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close });

1833  
1834 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // Align the tooltip to the high value to avoid covering the point

1835 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close point.tooltipPos[1] =

1836 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close point.plotHigh + yAxis.pos - series.chart.plotTop;

1837 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close });

1838 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close },

1839  
1840 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

1841 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * Draw the data points

1842 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

1843 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close drawPoints: function() {

1844 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var series = this,

1845 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close points = series.points,

1846 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close chart = series.chart;

1847  
1848  
1849 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close each(points, function(point) {

1850 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var plotOpen,

1851 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotClose,

1852 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispCorr,

1853 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close halfWidth,

1854 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close path,

1855 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close graphic = point.graphic,

1856 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX,

1857 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close isNew = !graphic;

1858  
1859 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (point.plotY !== undefined) {

1860  
1861 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // Create and/or update the graphic

1862 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (!graphic) {

1863 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close point.graphic = graphic = chart.renderer.path()

1864 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close .add(series.group);

1865 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1866  
1867  
1868 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close graphic.attr(series.pointAttribs(point, point.selected && 'select')); // #3897

1869  
1870  
1871 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // crisp vector coordinates

1872 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispCorr = (graphic.strokeWidth() % 2) / 2;

1873 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX = Math.round(point.plotX) - crispCorr; // #2596

1874 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close halfWidth = Math.round(point.shapeArgs.width / 2);

1875  
1876 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // the vertical stem

1877 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close path = [

1878 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'M',

1879 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX, Math.round(point.yBottom),

1880 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'L',

1881 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX, Math.round(point.plotHigh)

1882 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close ];

1883  
1884 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // open

1885 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (point.open !== null) {

1886 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotOpen = Math.round(point.plotOpen) + crispCorr;

1887 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close path.push(

1888 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'M',

1889 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX,

1890 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotOpen,

1891 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'L',

1892 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX - halfWidth,

1893 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotOpen

1894 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close );

1895 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1896  
1897 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // close

1898 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (point.close !== null) {

1899 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotClose = Math.round(point.plotClose) + crispCorr;

1900 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close path.push(

1901 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'M',

1902 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX,

1903 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotClose,

1904 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'L',

1905 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX + halfWidth,

1906 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotClose

1907 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close );

1908 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1909  
1910 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close graphic[isNew ? 'attr' : 'animate']({

1911 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close d: path

1912 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close })

1913 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close .addClass(point.getClassName(), true);

1914  
1915 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1916  
1917  
1918 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close });

1919  
1920 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close },

1921  
1922 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close animate: null // Disable animation

1923  
1924 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

1925 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * @constructor seriesTypes.ohlc.prototype.pointClass

1926 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * @extends {Point}

1927 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

1928 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }, /** @lends seriesTypes.ohlc.prototype.pointClass.prototype */ {

1929 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

1930 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * Extend the parent method by adding up or down to the class name.

1931 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

1932 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close getClassName: function() {

1933 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close return Point.prototype.getClassName.call(this) +

1934 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close (this.open < this.close ? ' highcharts-point-up' : ' highcharts-point-down');

1935 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1936 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close });

1937 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /* ****************************************************************************

1938 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * End OHLC series code *

1939 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close *****************************************************************************/

1940  
1941 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }(Highcharts));

1942 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close (function(H) {

1943 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

1944 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * (c) 2010-2017 Torstein Honsi

1945 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close *

1946 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * License: www.highcharts.com/license

1947 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

1948 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var defaultPlotOptions = H.defaultPlotOptions,

1949 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close each = H.each,

1950 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close merge = H.merge,

1951 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close seriesType = H.seriesType,

1952 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close seriesTypes = H.seriesTypes;

1953  
1954 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

1955 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * The candlestick series type.

1956 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close *

1957 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * @constructor seriesTypes.candlestick

1958 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * @augments seriesTypes.ohlc

1959 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

1960 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close seriesType('candlestick', 'ohlc', merge(defaultPlotOptions.column, {

1961 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close states: {

1962 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close hover: {

1963 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineWidth: 2

1964 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

1965 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close },

1966 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close tooltip: defaultPlotOptions.ohlc.tooltip,

1967 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close threshold: null,

1968  
1969 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineColor: '#000000',

1970 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineWidth: 1,

1971 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close upColor: '#ffffff',

1972 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close stickyTracking: true

1973 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // upLineColor: null

1974  
1975  
1976 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }), /** @lends seriesTypes.candlestick */ {

1977  
1978 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

1979 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * Postprocess mapping between options and SVG attributes

1980 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

1981 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close pointAttribs: function(point, state) {

1982 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var attribs = seriesTypes.column.prototype.pointAttribs.call(this, point, state),

1983 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close options = this.options,

1984 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close isUp = point.open < point.close,

1985 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close stroke = options.lineColor || this.color,

1986 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close stateOptions;

1987  
1988 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close attribs['stroke-width'] = options.lineWidth;

1989  
1990 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close attribs.fill = point.options.color || (isUp ? (options.upColor || this.color) : this.color);

1991 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close attribs.stroke = point.lineColor || (isUp ? (options.upLineColor || stroke) : stroke);

1992  
1993 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // Select or hover states

1994 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (state) {

1995 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close stateOptions = options.states[state];

1996 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close attribs.fill = stateOptions.color || attribs.fill;

1997 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close attribs.stroke = stateOptions.lineColor || attribs.stroke;

1998 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close attribs['stroke-width'] =

1999 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close stateOptions.lineWidth || attribs['stroke-width'];

2000 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

2001  
2002  
2003 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close return attribs;

2004 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close },

2005  
2006 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

2007 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * Draw the data points

2008 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

2009 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close drawPoints: function() {

2010 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var series = this, //state = series.state,

2011 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close points = series.points,

2012 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close chart = series.chart;

2013  
2014  
2015 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close each(points, function(point) {

2016  
2017 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var graphic = point.graphic,

2018 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotOpen,

2019 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotClose,

2020 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close topBox,

2021 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close bottomBox,

2022 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close hasTopWhisker,

2023 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close hasBottomWhisker,

2024 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispCorr,

2025 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX,

2026 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close path,

2027 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close halfWidth,

2028 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close isNew = !graphic;

2029  
2030 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (point.plotY !== undefined) {

2031  
2032 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (!graphic) {

2033 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close point.graphic = graphic = chart.renderer.path()

2034 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close .add(series.group);

2035 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

2036  
2037  
2038 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close graphic

2039 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close .attr(series.pointAttribs(point, point.selected && 'select')) // #3897

2040 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close .shadow(series.options.shadow);

2041  
2042  
2043 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // Crisp vector coordinates

2044 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispCorr = (graphic.strokeWidth() % 2) / 2;

2045 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX = Math.round(point.plotX) - crispCorr; // #2596

2046 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotOpen = point.plotOpen;

2047 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close plotClose = point.plotClose;

2048 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close topBox = Math.min(plotOpen, plotClose);

2049 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close bottomBox = Math.max(plotOpen, plotClose);

2050 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close halfWidth = Math.round(point.shapeArgs.width / 2);

2051 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close hasTopWhisker = Math.round(topBox) !== Math.round(point.plotHigh);

2052 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close hasBottomWhisker = bottomBox !== point.yBottom;

2053 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close topBox = Math.round(topBox) + crispCorr;

2054 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close bottomBox = Math.round(bottomBox) + crispCorr;

2055  
2056 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // Create the path. Due to a bug in Chrome 49, the path is first instanciated

2057 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // with no values, then the values pushed. For unknown reasons, instanciated

2058 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // the path array with all the values would lead to a crash when updating

2059 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // frequently (#5193).

2060 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close path = [];

2061 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close path.push(

2062 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'M',

2063 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX - halfWidth, bottomBox,

2064 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'L',

2065 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX - halfWidth, topBox,

2066 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'L',

2067 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX + halfWidth, topBox,

2068 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'L',

2069 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX + halfWidth, bottomBox,

2070 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'Z', // Use a close statement to ensure a nice rectangle #2602

2071 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'M',

2072 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX, topBox,

2073 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'L',

2074 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX, hasTopWhisker ? Math.round(point.plotHigh) : topBox, // #460, #2094

2075 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'M',

2076 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX, bottomBox,

2077 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'L',

2078 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close crispX, hasBottomWhisker ? Math.round(point.yBottom) : bottomBox // #460, #2094

2079 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close );

2080  
2081 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close graphic[isNew ? 'attr' : 'animate']({

2082 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close d: path

2083 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close })

2084 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close .addClass(point.getClassName(), true);

2085  
2086 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

2087 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close });

2088  
2089 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

2090  
2091  
2092 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close });

2093  
2094 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /* ****************************************************************************

2095 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * End Candlestick series code *

2096 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close *****************************************************************************/

2097  
2098 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }(Highcharts));

2099 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close (function(H) {

2100 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

2101 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * (c) 2010-2017 Torstein Honsi

2102 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close *

2103 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * License: www.highcharts.com/license

2104 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

2105 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var addEvent = H.addEvent,

2106 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close each = H.each,

2107 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close merge = H.merge,

2108 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close noop = H.noop,

2109 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close Renderer = H.Renderer,

2110 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close Series = H.Series,

2111 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close seriesType = H.seriesType,

2112 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close seriesTypes = H.seriesTypes,

2113 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close SVGRenderer = H.SVGRenderer,

2114 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close TrackerMixin = H.TrackerMixin,

2115 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close VMLRenderer = H.VMLRenderer,

2116 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close symbols = SVGRenderer.prototype.symbols,

2117 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close stableSort = H.stableSort;

2118  
2119 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

2120 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * The flags series type.

2121 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close *

2122 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * @constructor seriesTypes.flags

2123 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * @augments seriesTypes.column

2124 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

2125 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close seriesType('flags', 'column', {

2126 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close pointRange: 0, // #673

2127 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close //radius: 2,

2128 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close shape: 'flag',

2129 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close stackDistance: 12,

2130 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close textAlign: 'center',

2131 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close tooltip: {

2132 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close pointFormat: '{point.text}<br/>'

2133 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close },

2134 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close threshold: null,

2135 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close y: -30,

2136  
2137 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close fillColor: '#ffffff',

2138 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // lineColor: color,

2139 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineWidth: 1,

2140 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close states: {

2141 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close hover: {

2142 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineColor: '#000000',

2143 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close fillColor: '#ccd6eb'

2144 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

2145 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close },

2146 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close style: {

2147 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close fontSize: '11px',

2148 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close fontWeight: 'bold'

2149 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

2150  
2151  
2152 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }, /** @lends seriesTypes.flags.prototype */ {

2153 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close sorted: false,

2154 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close noSharedTooltip: true,

2155 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close allowDG: false,

2156 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close takeOrdinalPosition: false, // #1074

2157 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close trackerGroups: ['markerGroup'],

2158 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close forceCrop: true,

2159 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

2160 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * Inherit the initialization from base Series.

2161 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

2162 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close init: Series.prototype.init,

2163  
2164  
2165 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

2166 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * Get presentational attributes

2167 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

2168 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close pointAttribs: function(point, state) {

2169 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var options = this.options,

2170 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close color = (point && point.color) || this.color,

2171 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineColor = options.lineColor,

2172 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineWidth = (point && point.lineWidth),

2173 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close fill = (point && point.fillColor) || options.fillColor;

2174  
2175 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (state) {

2176 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close fill = options.states[state].fillColor;

2177 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineColor = options.states[state].lineColor;

2178 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lineWidth = options.states[state].lineWidth;

2179 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close }

2180  
2181 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close return {

2182 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'fill': fill || color,

2183 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'stroke': lineColor || color,

2184 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close 'stroke-width': lineWidth || options.lineWidth || 0

2185 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close };

2186 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close },

2187  
2188  
2189 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close /**

2190 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close * Extend the translate method by placing the point on the related series

2191 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close */

2192 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close translate: function() {

2193  
2194 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close seriesTypes.column.prototype.translate.apply(this);

2195  
2196 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close var series = this,

2197 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close options = series.options,

2198 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close chart = series.chart,

2199 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close points = series.points,

2200 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close cursor = points.length - 1,

2201 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close point,

2202 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lastPoint,

2203 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close optionsOnSeries = options.onSeries,

2204 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close onSeries = optionsOnSeries && chart.get(optionsOnSeries),

2205 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close onKey = options.onKey || 'y',

2206 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close step = onSeries && onSeries.options.step,

2207 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close onData = onSeries && onSeries.points,

2208 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close i = onData && onData.length,

2209 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close xAxis = series.xAxis,

2210 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close yAxis = series.yAxis,

2211 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close xAxisExt = xAxis.getExtremes(),

2212 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close xOffset = 0,

2213 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close leftPoint,

2214 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lastX,

2215 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close rightPoint,

2216 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close currentDataGrouping;

2217  
2218 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // relate to a master series

2219 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (onSeries && onSeries.visible && i) {

2220 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close xOffset = (onSeries.pointXOffset || 0) + (onSeries.barW || 0) / 2;

2221 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close currentDataGrouping = onSeries.currentDataGrouping;

2222 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close lastX = onData[i - 1].x + (currentDataGrouping ? currentDataGrouping.totalRange : 0); // #2374

2223  
2224 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close // sort the data points

2225 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close stableSort(points, function(a, b) {

2226 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close return (a.x - b.x);

2227 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close });

2228  
2229 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close onKey = 'plot' + onKey[0].toUpperCase() + onKey.substr(1);

2230 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close while (i-- && points[cursor]) {

2231 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close point = points[cursor];

2232 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close leftPoint = onData[i];

2233 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close if (leftPoint.x <= point.x && leftPoint[onKey] !== undefined) {

2234 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) { if (point.x <= lastX) { // #803

2235  
2236 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { / point.plotY = leftPoint[onKey];

2237  
2238 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { / // interpolate between points, #666

2239 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { / if (leftPoint.x < point.x && !step) {

2240 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rightPoint = onData[i + 1];

2241 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (rightPoint && rightPoint[onKey] !== undefined) {

2242 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.plotY +=

2243 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ((point.x - leftPoint.x) / (rightPoint.x - leftPoint.x)) * // the distance ratio, between 0 and 1

2244 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (rightPoint[onKey] - leftPoint[onKey]); // the y distance

2245 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2246 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2247 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2248 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { cursor--;

2249 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { i++; // check again for points in the same x position

2250 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (cursor < 0) {

2251 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { break;

2252 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2253 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2254 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2255 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2256  
2257 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add plotY position and handle stacking

2258 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(points, function(point, i) {

2259  
2260 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var stackIndex;

2261  
2262 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Undefined plotY means the point is either on axis, outside series

2263 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // range or hidden series. If the series is outside the range of the

2264 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // x axis it should fall through with an undefined plotY, but then

2265 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // we must remove the shapeArgs (#847).

2266 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (point.plotY === undefined) {

2267 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (point.x >= xAxisExt.min && point.x <= xAxisExt.max) {

2268 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // we're inside xAxis range

2269 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.plotY = chart.chartHeight - xAxis.bottom -

2270 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (xAxis.opposite ? xAxis.height : 0) +

2271 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis.offset - yAxis.top; // #3517

2272 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

2273 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.shapeArgs = {}; // 847

2274 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2275 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2276 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.plotX += xOffset; // #2049

2277 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // if multiple flags appear at the same x, order them into a stack

2278 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { lastPoint = points[i - 1];

2279 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (lastPoint && lastPoint.plotX === point.plotX) {

2280 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (lastPoint.stackIndex === undefined) {

2281 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { lastPoint.stackIndex = 0;

2282 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2283 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stackIndex = lastPoint.stackIndex + 1;

2284 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2285 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.stackIndex = stackIndex; // #3639

2286 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2287  
2288  
2289 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

2290  
2291 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2292 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Draw the markers

2293 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2294 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { drawPoints: function() {

2295 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var series = this,

2296 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { points = series.points,

2297 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = series.chart,

2298 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { renderer = chart.renderer,

2299 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { plotX,

2300 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { plotY,

2301 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = series.options,

2302 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { optionsY = options.y,

2303 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { shape,

2304 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { i,

2305 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point,

2306 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { graphic,

2307 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stackIndex,

2308 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { anchorX,

2309 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { anchorY,

2310 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { outsideRight,

2311 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yAxis = series.yAxis;

2312  
2313 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { i = points.length;

2314 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { while (i--) {

2315 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point = points[i];

2316 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { outsideRight = point.plotX > series.xAxis.len;

2317 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { plotX = point.plotX;

2318 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stackIndex = point.stackIndex;

2319 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { shape = point.options.shape || options.shape;

2320 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { plotY = point.plotY;

2321  
2322 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (plotY !== undefined) {

2323 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { plotY = point.plotY + optionsY - (stackIndex !== undefined && stackIndex * options.stackDistance);

2324 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2325 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { anchorX = stackIndex ? undefined : point.plotX; // skip connectors for higher level stacked points

2326 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { anchorY = stackIndex ? undefined : point.plotY;

2327  
2328 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { graphic = point.graphic;

2329  
2330 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Only draw the point if y is defined and the flag is within the visible area

2331 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (plotY !== undefined && plotX >= 0 && !outsideRight) {

2332  
2333 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create the flag

2334 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!graphic) {

2335 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { graphic = point.graphic = renderer.label(

2336 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { '',

2337 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { null,

2338 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { null,

2339 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { shape,

2340 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { null,

2341 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { null,

2342 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options.useHTML

2343 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { )

2344  
2345 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr(series.pointAttribs(point))

2346 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .css(merge(options.style, point.style))

2347  
2348 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

2349 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { align: shape === 'flag' ? 'left' : 'center',

2350 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: options.width,

2351 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: options.height,

2352 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'text-align': options.textAlign

2353 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

2354 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-point')

2355 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(series.markerGroup);

2356  
2357 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add reference to the point for tracker (#6303)

2358 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (point.graphic.div) {

2359 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.graphic.div.point = point;

2360 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2361  
2362  
2363 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { graphic.shadow(options.shadow);

2364  
2365 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2366  
2367 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (plotX > 0) { // #3119

2368 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { plotX -= graphic.strokeWidth() % 2; // #4285

2369 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2370  
2371 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Plant the flag

2372 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { graphic.attr({

2373 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: point.options.title || options.title || 'A',

2374 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x: plotX,

2375 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y: plotY,

2376 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { anchorX: anchorX,

2377 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { anchorY: anchorY

2378 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2379  
2380 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Set the tooltip anchor position

2381 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.tooltipPos = chart.inverted ? [yAxis.len + yAxis.pos - chart.plotLeft - plotY, series.xAxis.len - plotX] : [plotX, plotY + yAxis.pos - chart.plotTop]; // #6327

2382  
2383 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (graphic) {

2384 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.graphic = graphic.destroy();

2385 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2386  
2387 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2388  
2389 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Might be a mix of SVG and HTML and we need events for both (#6303)

2390 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (options.useHTML) {

2391 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { H.wrap(series.markerGroup, 'on', function(proceed) {

2392 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return H.SVGElement.prototype.on.apply(

2393 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.apply(this, [].slice.call(arguments, 1)), // for HTML

2394 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { [].slice.call(arguments, 1)); // and for SVG

2395 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2396 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2397  
2398 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

2399  
2400 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2401 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Extend the column trackers with listeners to expand and contract stacks

2402 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2403 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { drawTracker: function() {

2404 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var series = this,

2405 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { points = series.points;

2406  
2407 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { TrackerMixin.drawTrackerPoint.apply(this);

2408  
2409 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Bring each stacked flag up on mouse over, this allows readability of vertically

2410 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // stacked elements as well as tight points on the x axis. #1924.

2411 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(points, function(point) {

2412 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var graphic = point.graphic;

2413 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (graphic) {

2414 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(graphic.element, 'mouseover', function() {

2415  
2416 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Raise this point

2417 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (point.stackIndex > 0 && !point.raised) {

2418 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point._y = graphic.y;

2419 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { graphic.attr({

2420 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y: point._y - 8

2421 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2422 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { point.raised = true;

2423 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2424  
2425 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Revert other raised points

2426 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(points, function(otherPoint) {

2427 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (otherPoint !== point && otherPoint.raised && otherPoint.graphic) {

2428 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { otherPoint.graphic.attr({

2429 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y: otherPoint._y

2430 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2431 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { otherPoint.raised = false;

2432 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2433 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2434 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2435 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2436 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2437 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

2438  
2439 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { animate: noop, // Disable animation

2440 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buildKDTree: noop,

2441 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { setClip: noop

2442  
2443 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2444  
2445 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // create the flag icon with anchor

2446 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { symbols.flag = function(x, y, w, h, options) {

2447 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var anchorX = (options && options.anchorX) || x,

2448 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { anchorY = (options && options.anchorY) || y;

2449  
2450 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return [

2451 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M', anchorX, anchorY,

2452 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L', x, y + h,

2453 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x, y,

2454 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x + w, y,

2455 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x + w, y + h,

2456 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x, y + h,

2457 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'Z'

2458 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ];

2459 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2460  
2461 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // create the circlepin and squarepin icons with anchor

2462 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(['circle', 'square'], function(shape) {

2463 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { symbols[shape + 'pin'] = function(x, y, w, h, options) {

2464  
2465 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var anchorX = options && options.anchorX,

2466 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { anchorY = options && options.anchorY,

2467 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { path,

2468 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { labelTopOrBottomY;

2469  
2470 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // For single-letter flags, make sure circular flags are not taller than their width

2471 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (shape === 'circle' && h > w) {

2472 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x -= Math.round((h - w) / 2);

2473 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { w = h;

2474 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2475  
2476 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { path = symbols[shape](x, y, w, h);

2477  
2478 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (anchorX && anchorY) {

2479 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // if the label is below the anchor, draw the connecting line from the top edge of the label

2480 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // otherwise start drawing from the bottom edge

2481 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { labelTopOrBottomY = (y > anchorY) ? y : y + h;

2482 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { path.push('M', anchorX, labelTopOrBottomY, 'L', anchorX, anchorY);

2483 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2484  
2485 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return path;

2486 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2487 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2488  
2489  
2490 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // The symbol callbacks are generated on the SVGRenderer object in all browsers. Even

2491 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // VML browsers need this in order to generate shapes in export. Now share

2492 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // them with the VMLRenderer.

2493 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (Renderer === VMLRenderer) {

2494 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(['flag', 'circlepin', 'squarepin'], function(shape) {

2495 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { VMLRenderer.prototype.symbols[shape] = symbols[shape];

2496 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2497 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2498  
2499 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /* ****************************************************************************

2500 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * End Flags series code *

2501 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *****************************************************************************/

2502  
2503 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }(Highcharts));

2504 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (function(H) {

2505 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2506 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * (c) 2010-2017 Torstein Honsi

2507 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *

2508 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * License: www.highcharts.com/license

2509 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2510 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var addEvent = H.addEvent,

2511 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Axis = H.Axis,

2512 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { correctFloat = H.correctFloat,

2513 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultOptions = H.defaultOptions,

2514 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defined = H.defined,

2515 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroyObjectProperties = H.destroyObjectProperties,

2516 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { doc = H.doc,

2517 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each = H.each,

2518 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent = H.fireEvent,

2519 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { hasTouch = H.hasTouch,

2520 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isTouchDevice = H.isTouchDevice,

2521 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { merge = H.merge,

2522 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pick = H.pick,

2523 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { removeEvent = H.removeEvent,

2524 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { svg = H.svg,

2525 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap = H.wrap,

2526 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { swapXY;

2527  
2528 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var defaultScrollbarOptions = {

2529 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { //enabled: true

2530 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: isTouchDevice ? 20 : 14,

2531 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // trackBorderRadius: 0

2532 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { barBorderRadius: 0,

2533 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonBorderRadius: 0,

2534 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { liveRedraw: svg && !isTouchDevice,

2535 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { margin: 10,

2536 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minWidth: 6,

2537 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { //showFull: true,

2538 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { //size: null,

2539 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { step: 0.2,

2540 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zIndex: 3,

2541  
2542 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { barBackgroundColor: '#cccccc',

2543 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { barBorderWidth: 1,

2544 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { barBorderColor: '#cccccc',

2545 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonArrowColor: '#333333',

2546 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonBackgroundColor: '#e6e6e6',

2547 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonBorderColor: '#cccccc',

2548 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonBorderWidth: 1,

2549 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rifleColor: '#333333',

2550 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trackBackgroundColor: '#f2f2f2',

2551 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trackBorderColor: '#f2f2f2',

2552 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trackBorderWidth: 1

2553  
2554 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2555  
2556 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultOptions.scrollbar = merge(true, defaultScrollbarOptions, defaultOptions.scrollbar);

2557  
2558 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2559 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * When we have vertical scrollbar, rifles and arrow in buttons should be rotated.

2560 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * The same method is used in Navigator's handles, to rotate them.

2561 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Array} path - path to be rotated

2562 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Boolean} vertical - if vertical scrollbar, swap x-y values

2563 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2564 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { H.swapXY = swapXY = function(path, vertical) {

2565 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var i,

2566 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { len = path.length,

2567 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { temp;

2568  
2569 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (vertical) {

2570 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { for (i = 0; i < len; i += 3) {

2571 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { temp = path[i + 1];

2572 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { path[i + 1] = path[i + 2];

2573 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { path[i + 2] = temp;

2574 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2575 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2576  
2577 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return path;

2578 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2579  
2580 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2581 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * A reusable scrollbar, internally used in Highstock's navigator and optionally

2582 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * on individual axes.

2583 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *

2584 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @class

2585 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} renderer

2586 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} options

2587 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} chart

2588 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2589 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { function Scrollbar(renderer, options, chart) { // docs

2590 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.init(renderer, options, chart);

2591 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2592  
2593 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Scrollbar.prototype = {

2594  
2595 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { init: function(renderer, options, chart) {

2596  
2597 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.scrollbarButtons = [];

2598  
2599 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.renderer = renderer;

2600  
2601 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.userOptions = options;

2602 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.options = merge(defaultScrollbarOptions, options);

2603  
2604 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.chart = chart;

2605  
2606 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.size = pick(this.options.size, this.options.height); // backward compatibility

2607  
2608 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Init

2609 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (options.enabled) {

2610 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.render();

2611 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.initEvents();

2612 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.addEvents();

2613 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2614 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

2615  
2616 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2617 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Render scrollbar with all required items.

2618 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2619 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { render: function() {

2620 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var scroller = this,

2621 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { renderer = scroller.renderer,

2622 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = scroller.options,

2623 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { size = scroller.size,

2624 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { group;

2625  
2626 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Draw the scrollbar group

2627 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.group = group = renderer.g('scrollbar').attr({

2628 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zIndex: options.zIndex,

2629 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateY: -99999

2630 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }).add();

2631  
2632 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Draw the scrollbar track:

2633 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.track = renderer.rect()

2634 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-scrollbar-track')

2635 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

2636 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x: 0,

2637 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { r: options.trackBorderRadius || 0,

2638 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: size,

2639 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: size

2640 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }).add(group);

2641  
2642  
2643 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.track.attr({

2644 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fill: options.trackBackgroundColor,

2645 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stroke: options.trackBorderColor,

2646 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'stroke-width': options.trackBorderWidth

2647 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2648  
2649 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.trackBorderWidth = scroller.track.strokeWidth();

2650 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.track.attr({

2651 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y: -this.trackBorderWidth % 2 / 2

2652 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2653  
2654  
2655 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Draw the scrollbar itself

2656 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarGroup = renderer.g().add(group);

2657  
2658 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbar = renderer.rect()

2659 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-scrollbar-thumb')

2660 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

2661 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: size,

2662 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: size,

2663 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { r: options.barBorderRadius || 0

2664 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }).add(scroller.scrollbarGroup);

2665  
2666 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarRifles = renderer.path(

2667 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { swapXY([

2668 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M', -3, size / 4,

2669 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L', -3, 2 * size / 3,

2670 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M',

2671 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0, size / 4,

2672 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

2673 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0, 2 * size / 3,

2674 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M',

2675 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 3, size / 4,

2676 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

2677 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 3, 2 * size / 3

2678 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ], options.vertical))

2679 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-scrollbar-rifles')

2680 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(scroller.scrollbarGroup);

2681  
2682  
2683 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbar.attr({

2684 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fill: options.barBackgroundColor,

2685 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stroke: options.barBorderColor,

2686 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'stroke-width': options.barBorderWidth

2687 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2688 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarRifles.attr({

2689 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stroke: options.rifleColor,

2690 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'stroke-width': 1

2691 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2692  
2693 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarStrokeWidth = scroller.scrollbar.strokeWidth();

2694 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarGroup.translate(-scroller.scrollbarStrokeWidth % 2 / 2, -scroller.scrollbarStrokeWidth % 2 / 2);

2695  
2696 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Draw the buttons:

2697 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.drawScrollbarButton(0);

2698 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.drawScrollbarButton(1);

2699 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

2700  
2701 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2702 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Position the scrollbar, method called from a parent with defined dimensions

2703 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} x - x-position on the chart

2704 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} y - y-position on the chart

2705 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} width - width of the scrollbar

2706 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} height - height of the scorllbar

2707 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2708 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { position: function(x, y, width, height) {

2709 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var scroller = this,

2710 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = scroller.options,

2711 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { vertical = options.vertical,

2712 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xOffset = height,

2713 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yOffset = 0,

2714 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { method = scroller.rendered ? 'animate' : 'attr';

2715  
2716 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.x = x;

2717 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.y = y + this.trackBorderWidth;

2718 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.width = width; // width with buttons

2719 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.height = height;

2720 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.xOffset = xOffset;

2721 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.yOffset = yOffset;

2722  
2723 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If Scrollbar is a vertical type, swap options:

2724 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (vertical) {

2725 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.width = scroller.yOffset = width = yOffset = scroller.size;

2726 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.xOffset = xOffset = 0;

2727 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.barWidth = height - width * 2; // width without buttons

2728 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.x = x = x + scroller.options.margin;

2729 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

2730 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.height = scroller.xOffset = height = xOffset = scroller.size;

2731 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.barWidth = width - height * 2; // width without buttons

2732 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.y = scroller.y + scroller.options.margin;

2733 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2734  
2735 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Set general position for a group:

2736 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.group[method]({

2737 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateX: x,

2738 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateY: scroller.y

2739 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2740  
2741 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Resize background/track:

2742 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.track[method]({

2743 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: width,

2744 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: height

2745 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2746  
2747 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Move right/bottom button ot it's place:

2748 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarButtons[1][method]({

2749 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateX: vertical ? 0 : width - xOffset,

2750 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateY: vertical ? height - yOffset : 0

2751 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2752 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

2753  
2754 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2755 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Draw the scrollbar buttons with arrows

2756 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} index 0 is left, 1 is right

2757 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2758 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { drawScrollbarButton: function(index) {

2759 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var scroller = this,

2760 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { renderer = scroller.renderer,

2761 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarButtons = scroller.scrollbarButtons,

2762 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = scroller.options,

2763 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { size = scroller.size,

2764 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { group,

2765 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tempElem;

2766  
2767 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { group = renderer.g().add(scroller.group);

2768 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarButtons.push(group);

2769  
2770 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create a rectangle for the scrollbar button

2771 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tempElem = renderer.rect()

2772 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-scrollbar-button')

2773 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(group);

2774  
2775  
2776 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Presentational attributes

2777 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tempElem.attr({

2778 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stroke: options.buttonBorderColor,

2779 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'stroke-width': options.buttonBorderWidth,

2780 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fill: options.buttonBackgroundColor

2781 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2782  
2783  
2784 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Place the rectangle based on the rendered stroke width

2785 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tempElem.attr(tempElem.crisp({

2786 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x: -0.5,

2787 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y: -0.5,

2788 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: size + 1, // +1 to compensate for crispifying in rect method

2789 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: size + 1,

2790 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { r: options.buttonBorderRadius

2791 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, tempElem.strokeWidth()));

2792  
2793 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Button arrow

2794 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tempElem = renderer

2795 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .path(swapXY([

2796 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M',

2797 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { size / 2 + (index ? -1 : 1),

2798 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { size / 2 - 3,

2799 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

2800 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { size / 2 + (index ? -1 : 1),

2801 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { size / 2 + 3,

2802 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

2803 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { size / 2 + (index ? 2 : -2),

2804 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { size / 2

2805 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ], options.vertical))

2806 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-scrollbar-arrow')

2807 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(scrollbarButtons[index]);

2808  
2809  
2810 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tempElem.attr({

2811 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fill: options.buttonArrowColor

2812 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2813  
2814 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

2815  
2816 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2817 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Set scrollbar size, with a given scale.

2818 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} from - scale (0-1) where bar should start

2819 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} to - scale (0-1) where bar should end

2820 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2821 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { setRange: function(from, to) {

2822 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var scroller = this,

2823 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = scroller.options,

2824 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { vertical = options.vertical,

2825 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minWidth = options.minWidth,

2826 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fullWidth = scroller.barWidth,

2827 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fromPX,

2828 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { toPX,

2829 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newPos,

2830 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newSize,

2831 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newRiflesPos,

2832 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { method = this.rendered && !this.hasDragged ? 'animate' : 'attr';

2833  
2834 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!defined(fullWidth)) {

2835 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return;

2836 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2837  
2838 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from = Math.max(from, 0);

2839 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fromPX = Math.ceil(fullWidth * from);

2840 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { toPX = fullWidth * Math.min(to, 1);

2841 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.calculatedWidth = newSize = correctFloat(toPX - fromPX);

2842  
2843 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // We need to recalculate position, if minWidth is used

2844 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (newSize < minWidth) {

2845 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fromPX = (fullWidth - minWidth + newSize) * from;

2846 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newSize = minWidth;

2847 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2848 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newPos = Math.floor(fromPX + scroller.xOffset + scroller.yOffset);

2849 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newRiflesPos = newSize / 2 - 0.5; // -0.5 -> rifle line width / 2

2850  
2851 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Store current position:

2852 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.from = from;

2853 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.to = to;

2854  
2855 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!vertical) {

2856 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarGroup[method]({

2857 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateX: newPos

2858 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2859 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbar[method]({

2860 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: newSize

2861 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2862 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarRifles[method]({

2863 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateX: newRiflesPos

2864 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2865 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarLeft = newPos;

2866 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarTop = 0;

2867 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

2868 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarGroup[method]({

2869 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateY: newPos

2870 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2871 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbar[method]({

2872 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: newSize

2873 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2874 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarRifles[method]({

2875 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateY: newRiflesPos

2876 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2877 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarTop = newPos;

2878 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarLeft = 0;

2879 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2880  
2881 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (newSize <= 12) {

2882 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarRifles.hide();

2883 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

2884 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbarRifles.show(true);

2885 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2886  
2887 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Show or hide the scrollbar based on the showFull setting

2888 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (options.showFull === false) {

2889 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (from <= 0 && to >= 1) {

2890 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.group.hide();

2891 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

2892 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.group.show();

2893 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2894 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2895  
2896 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.rendered = true;

2897 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

2898  
2899 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2900 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Init events methods, so we have an access to the Scrollbar itself

2901 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2902 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { initEvents: function() {

2903 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var scroller = this;

2904 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2905 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Event handler for the mouse move event.

2906 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2907 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.mouseMoveHandler = function(e) {

2908 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var normalizedEvent = scroller.chart.pointer.normalize(e),

2909 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = scroller.options,

2910 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { direction = options.vertical ? 'chartY' : 'chartX',

2911 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { initPositions = scroller.initPositions,

2912 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollPosition,

2913 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartPosition,

2914 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { change;

2915  
2916 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // In iOS, a mousemove event with e.pageX === 0 is fired when holding the finger

2917 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // down in the center of the scrollbar. This should be ignored.

2918 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (scroller.grabbedCenter && (!e.touches || e.touches[0][direction] !== 0)) { // #4696, scrollbar failed on Android

2919 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartPosition = scroller.cursorToScrollbarPosition(normalizedEvent)[direction];

2920 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollPosition = scroller[direction];

2921  
2922 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { change = chartPosition - scrollPosition;

2923  
2924 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.hasDragged = true;

2925 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.updatePosition(initPositions[0] + change, initPositions[1] + change);

2926  
2927 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (scroller.hasDragged) {

2928 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent(scroller, 'changed', {

2929 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from: scroller.from,

2930 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to: scroller.to,

2931 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'scrollbar',

2932 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMType: e.type,

2933 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMEvent: e

2934 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2935 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2936 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2937 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2938  
2939 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

2940 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Event handler for the mouse up event.

2941 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

2942 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.mouseUpHandler = function(e) {

2943 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (scroller.hasDragged) {

2944 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent(scroller, 'changed', {

2945 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from: scroller.from,

2946 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to: scroller.to,

2947 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'scrollbar',

2948 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMType: e.type,

2949 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMEvent: e

2950 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2951 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

2952 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.grabbedCenter = scroller.hasDragged = scroller.chartX = scroller.chartY = null;

2953 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2954  
2955 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.mouseDownHandler = function(e) {

2956 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var normalizedEvent = scroller.chart.pointer.normalize(e),

2957 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mousePosition = scroller.cursorToScrollbarPosition(normalizedEvent);

2958  
2959 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.chartX = mousePosition.chartX;

2960 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.chartY = mousePosition.chartY;

2961 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.initPositions = [scroller.from, scroller.to];

2962  
2963 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.grabbedCenter = true;

2964 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2965  
2966 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.buttonToMinClick = function(e) {

2967 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var range = correctFloat(scroller.to - scroller.from) * scroller.options.step;

2968 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.updatePosition(correctFloat(scroller.from - range), correctFloat(scroller.to - range));

2969 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent(scroller, 'changed', {

2970 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from: scroller.from,

2971 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to: scroller.to,

2972 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'scrollbar',

2973 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMEvent: e

2974 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2975 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2976  
2977 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.buttonToMaxClick = function(e) {

2978 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var range = (scroller.to - scroller.from) * scroller.options.step;

2979 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.updatePosition(scroller.from + range, scroller.to + range);

2980 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent(scroller, 'changed', {

2981 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from: scroller.from,

2982 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to: scroller.to,

2983 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'scrollbar',

2984 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMEvent: e

2985 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

2986 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

2987  
2988 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.trackClick = function(e) {

2989 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var normalizedEvent = scroller.chart.pointer.normalize(e),

2990 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { range = scroller.to - scroller.from,

2991 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { top = scroller.y + scroller.scrollbarTop,

2992 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left = scroller.x + scroller.scrollbarLeft;

2993  
2994 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if ((scroller.options.vertical && normalizedEvent.chartY > top) ||

2995 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (!scroller.options.vertical && normalizedEvent.chartX > left)) {

2996 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // On the top or on the left side of the track:

2997 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.updatePosition(scroller.from + range, scroller.to + range);

2998 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

2999 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // On the bottom or the right side of the track:

3000 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.updatePosition(scroller.from - range, scroller.to - range);

3001 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3002  
3003 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent(scroller, 'changed', {

3004 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from: scroller.from,

3005 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to: scroller.to,

3006 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'scrollbar',

3007 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMEvent: e

3008 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3009 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

3010 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3011  
3012 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3013 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Get normalized (0-1) cursor position over the scrollbar

3014 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Event} normalizedEvent - normalized event, with chartX and chartY values

3015 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @return {Object} Local position {chartX, chartY}

3016 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3017 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { cursorToScrollbarPosition: function(normalizedEvent) {

3018 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var scroller = this,

3019 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = scroller.options,

3020 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minWidthDifference = options.minWidth > scroller.calculatedWidth ? options.minWidth : 0; // minWidth distorts translation

3021  
3022 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return {

3023 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX: (normalizedEvent.chartX - scroller.x - scroller.xOffset) / (scroller.barWidth - minWidthDifference),

3024 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartY: (normalizedEvent.chartY - scroller.y - scroller.yOffset) / (scroller.barWidth - minWidthDifference)

3025 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

3026 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3027  
3028 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3029 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Update position option in the Scrollbar, with normalized 0-1 scale

3030 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3031 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { updatePosition: function(from, to) {

3032 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (to > 1) {

3033 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from = correctFloat(1 - correctFloat(to - from));

3034 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to = 1;

3035 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3036  
3037 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (from < 0) {

3038 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to = correctFloat(to - from);

3039 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from = 0;

3040 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3041  
3042 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.from = from;

3043 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.to = to;

3044 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3045  
3046 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3047 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Update the scrollbar with new options

3048 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3049 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { update: function(options) {

3050 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.destroy();

3051 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.init(this.chart.renderer, merge(true, this.options, options), this.chart);

3052 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3053  
3054 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3055 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Set up the mouse and touch events for the Scrollbar

3056 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3057 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvents: function() {

3058 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var buttonsOrder = this.options.inverted ? [1, 0] : [0, 1],

3059 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttons = this.scrollbarButtons,

3060 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { bar = this.scrollbarGroup.element,

3061 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { track = this.track.element,

3062 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mouseDownHandler = this.mouseDownHandler,

3063 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mouseMoveHandler = this.mouseMoveHandler,

3064 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mouseUpHandler = this.mouseUpHandler,

3065 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { _events;

3066  
3067 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Mouse events

3068 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { _events = [

3069 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { [buttons[buttonsOrder[0]].element, 'click', this.buttonToMinClick],

3070 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { [buttons[buttonsOrder[1]].element, 'click', this.buttonToMaxClick],

3071 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { [track, 'click', this.trackClick],

3072 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { [bar, 'mousedown', mouseDownHandler],

3073 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { [doc, 'mousemove', mouseMoveHandler],

3074 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { [doc, 'mouseup', mouseUpHandler]

3075 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ];

3076  
3077 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Touch events

3078 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (hasTouch) {

3079 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { _events.push(

3080 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { [bar, 'touchstart', mouseDownHandler], [doc, 'touchmove', mouseMoveHandler], [doc, 'touchend', mouseUpHandler]

3081 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3082 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3083  
3084 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add them all

3085 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(_events, function(args) {

3086 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent.apply(null, args);

3087 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3088 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this._events = _events;

3089 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3090  
3091 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3092 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Removes the event handlers attached previously with addEvents.

3093 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3094 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { removeEvents: function() {

3095 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(this._events, function(args) {

3096 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { removeEvent.apply(null, args);

3097 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3098 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this._events.length = 0;

3099 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3100  
3101 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3102 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Destroys allocated elements.

3103 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3104 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroy: function() {

3105  
3106 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var scroller = this.chart.scroller;

3107  
3108 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Disconnect events added in addEvents

3109 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.removeEvents();

3110  
3111 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Destroy properties

3112 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(['track', 'scrollbarRifles', 'scrollbar', 'scrollbarGroup', 'group'], function(prop) {

3113 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this[prop] && this[prop].destroy) {

3114 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this[prop] = this[prop].destroy();

3115 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3116 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, this);

3117  
3118 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (scroller && this === scroller.scrollbar) { // #6421, chart may have more scrollbars

3119 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scroller.scrollbar = null;

3120  
3121 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Destroy elements in collection

3122 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroyObjectProperties(scroller.scrollbarButtons);

3123 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3124 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3125 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

3126  
3127 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3128 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Wrap axis initialization and create scrollbar if enabled:

3129 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3130 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Axis.prototype, 'init', function(proceed) {

3131 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var axis = this;

3132 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.apply(axis, Array.prototype.slice.call(arguments, 1));

3133  
3134 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (axis.options.scrollbar && axis.options.scrollbar.enabled) {

3135 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Predefined options:

3136 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.options.scrollbar.vertical = !axis.horiz;

3137 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.options.startOnTick = axis.options.endOnTick = false;

3138  
3139 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.scrollbar = new Scrollbar(axis.chart.renderer, axis.options.scrollbar, axis.chart);

3140  
3141 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(axis.scrollbar, 'changed', function(e) {

3142 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var unitedMin = Math.min(pick(axis.options.min, axis.min), axis.min, axis.dataMin),

3143 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { unitedMax = Math.max(pick(axis.options.max, axis.max), axis.max, axis.dataMax),

3144 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { range = unitedMax - unitedMin,

3145 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to,

3146 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from;

3147  
3148 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if ((axis.horiz && !axis.reversed) || (!axis.horiz && axis.reversed)) {

3149 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to = unitedMin + range * this.to;

3150 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from = unitedMin + range * this.from;

3151 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3152 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // y-values in browser are reversed, but this also applies for reversed horizontal axis:

3153 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to = unitedMin + range * (1 - this.from);

3154 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from = unitedMin + range * (1 - this.to);

3155 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3156  
3157 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.setExtremes(from, to, true, false, e);

3158 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3159 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3160 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3161  
3162 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3163 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Wrap rendering axis, and update scrollbar if one is created:

3164 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3165 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Axis.prototype, 'render', function(proceed) {

3166 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var axis = this,

3167 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollMin = Math.min(pick(axis.options.min, axis.min), axis.min, axis.dataMin),

3168 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollMax = Math.max(pick(axis.options.max, axis.max), axis.max, axis.dataMax),

3169 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbar = axis.scrollbar,

3170 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { titleOffset = axis.titleOffset || 0,

3171 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { offsetsIndex,

3172 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from,

3173 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to;

3174  
3175 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.apply(axis, Array.prototype.slice.call(arguments, 1));

3176  
3177 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (scrollbar) {

3178  
3179 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (axis.horiz) {

3180 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbar.position(

3181 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.left,

3182 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.top + axis.height + 2 + axis.chart.scrollbarsOffsets[1] +

3183 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (axis.opposite ?

3184  
3185 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { titleOffset + axis.axisTitleMargin + axis.offset

3186 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ),

3187 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.width,

3188 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.height

3189 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3190 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { offsetsIndex = 1;

3191 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3192 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbar.position(

3193 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.left + axis.width + 2 + axis.chart.scrollbarsOffsets[0] +

3194 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (axis.opposite ?

3195 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { titleOffset + axis.axisTitleMargin + axis.offset :

3196  
3197 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ),

3198 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.top,

3199 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.width,

3200 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.height

3201 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3202 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { offsetsIndex = 0;

3203 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3204  
3205 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if ((!axis.opposite && !axis.horiz) || (axis.opposite && axis.horiz)) {

3206 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.chart.scrollbarsOffsets[offsetsIndex] +=

3207 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.scrollbar.size + axis.scrollbar.options.margin;

3208 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3209  
3210 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (isNaN(scrollMin) || isNaN(scrollMax) || !defined(axis.min) || !defined(axis.max)) {

3211 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbar.setRange(0, 0); // default action: when there is not extremes on the axis, but scrollbar exists, make it full size

3212 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3213 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from = (axis.min - scrollMin) / (scrollMax - scrollMin);

3214 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to = (axis.max - scrollMin) / (scrollMax - scrollMin);

3215  
3216 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if ((axis.horiz && !axis.reversed) || (!axis.horiz && axis.reversed)) {

3217 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbar.setRange(from, to);

3218 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3219 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbar.setRange(1 - to, 1 - from); // inverse vertical axis

3220 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3221 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3222 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3223 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3224  
3225 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3226 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Make space for a scrollbar

3227 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3228 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Axis.prototype, 'getOffset', function(proceed) {

3229 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var axis = this,

3230 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { index = axis.horiz ? 2 : 1,

3231 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbar = axis.scrollbar;

3232  
3233 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.apply(axis, Array.prototype.slice.call(arguments, 1));

3234  
3235 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (scrollbar) {

3236 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.chart.scrollbarsOffsets = [0, 0]; // reset scrollbars offsets

3237 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { axis.chart.axisOffset[index] += scrollbar.size + scrollbar.options.margin;

3238 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3239 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3240  
3241 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3242 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Destroy scrollbar when connected to the specific axis

3243 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3244 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Axis.prototype, 'destroy', function(proceed) {

3245 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.scrollbar) {

3246 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.scrollbar = this.scrollbar.destroy();

3247 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3248  
3249 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.apply(this, Array.prototype.slice.call(arguments, 1));

3250 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3251  
3252 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { H.Scrollbar = Scrollbar;

3253  
3254 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }(Highcharts));

3255 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (function(H) {

3256 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3257 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * (c) 2010-2017 Torstein Honsi

3258 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *

3259 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * License: www.highcharts.com/license

3260 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3261 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /* ****************************************************************************

3262 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Start Navigator code *

3263 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *****************************************************************************/

3264 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var addEvent = H.addEvent,

3265 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Axis = H.Axis,

3266 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Chart = H.Chart,

3267 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { color = H.color,

3268 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultDataGroupingUnits = H.defaultDataGroupingUnits,

3269 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultOptions = H.defaultOptions,

3270 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defined = H.defined,

3271 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroyObjectProperties = H.destroyObjectProperties,

3272 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { doc = H.doc,

3273 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each = H.each,

3274 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { erase = H.erase,

3275 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { error = H.error,

3276 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { extend = H.extend,

3277 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { grep = H.grep,

3278 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { hasTouch = H.hasTouch,

3279 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isNumber = H.isNumber,

3280 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isObject = H.isObject,

3281 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { merge = H.merge,

3282 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pick = H.pick,

3283 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { removeEvent = H.removeEvent,

3284 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Scrollbar = H.Scrollbar,

3285 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Series = H.Series,

3286 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { seriesTypes = H.seriesTypes,

3287 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap = H.wrap,

3288 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { swapXY = H.swapXY,

3289  
3290 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { units = [].concat(defaultDataGroupingUnits), // copy

3291 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultSeriesType,

3292  
3293 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Finding the min or max of a set of variables where we don't know if they are defined,

3294 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // is a pattern that is repeated several places in Highcharts. Consider making this

3295 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // a global utility method.

3296 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { numExt = function(extreme) {

3297 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var numbers = grep(arguments, isNumber);

3298 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (numbers.length) {

3299 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return Math[extreme].apply(0, numbers);

3300 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3301 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

3302  
3303 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // add more resolution to units

3304 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { units[4] = ['day', [1, 2, 3, 4]]; // allow more days

3305 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { units[5] = ['week', [1, 2, 3]]; // allow more weeks

3306  
3307 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultSeriesType = seriesTypes.areaspline === undefined ? 'line' : 'areaspline';

3308  
3309 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { extend(defaultOptions, {

3310 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator: {

3311 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { //enabled: true,

3312 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: 40,

3313 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { margin: 25,

3314 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maskInside: true,

3315  
3316 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { handles: {

3317 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { backgroundColor: '#f2f2f2',

3318 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { borderColor: '#999999'

3319 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3320 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maskFill: color('#6685c2').setOpacity(0.3).get(),

3321 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { outlineColor: '#cccccc',

3322 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { outlineWidth: 1,

3323  
3324 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { series: {

3325 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: defaultSeriesType,

3326  
3327 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { color: '#335cad',

3328 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fillOpacity: 0.05,

3329 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { lineWidth: 1,

3330  
3331 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { compare: null,

3332 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataGrouping: {

3333 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { approximation: 'average',

3334 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { enabled: true,

3335 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { groupPixelWidth: 2,

3336 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { smoothed: true,

3337 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { units: units

3338 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3339 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataLabels: {

3340 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { enabled: false,

3341 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zIndex: 2 // #1839

3342 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3343 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { id: 'highcharts-navigator-series',

3344 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { className: 'highcharts-navigator-series',

3345 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { lineColor: null, // Allow color setting while disallowing default candlestick setting (#4602)

3346 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { marker: {

3347 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { enabled: false

3348 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3349 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pointRange: 0,

3350 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { shadow: false,

3351 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { threshold: null

3352 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3353 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { //top: undefined,

3354 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { //opposite: undefined,

3355 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis: {

3356 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { className: 'highcharts-navigator-xaxis',

3357 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tickLength: 0,

3358  
3359 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { lineWidth: 0,

3360 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { gridLineColor: '#e6e6e6',

3361 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { gridLineWidth: 1,

3362  
3363 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tickPixelInterval: 200,

3364 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { labels: {

3365 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { align: 'left',

3366  
3367 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { style: {

3368 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { color: '#999999'

3369 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3370  
3371 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x: 3,

3372 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y: -4

3373 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3374 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { crosshair: false

3375 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3376 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yAxis: {

3377 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { className: 'highcharts-navigator-yaxis',

3378  
3379 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { gridLineWidth: 0,

3380  
3381 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { startOnTick: false,

3382 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { endOnTick: false,

3383 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minPadding: 0.1,

3384 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maxPadding: 0.1,

3385 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { labels: {

3386 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { enabled: false

3387 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3388 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { crosshair: false,

3389 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { title: {

3390 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: null

3391 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3392 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tickLength: 0,

3393 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { tickWidth: 0

3394 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3395 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3396 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3397  
3398 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3399 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * The Navigator class

3400 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} chart - Chart object

3401 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @class

3402 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3403 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { function Navigator(chart) {

3404 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.init(chart);

3405 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3406  
3407 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Navigator.prototype = {

3408 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3409 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Draw one of the handles on the side of the zoomed range in the navigator

3410 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} x The x center for the handle

3411 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} index 0 for left and 1 for right

3412 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Boolean} inverted flag for chart.inverted

3413 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {String} verb use 'animate' or 'attr'

3414 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3415 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { drawHandle: function(x, index, inverted, verb) {

3416 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this;

3417  
3418 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Place it

3419 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.handles[index][verb](inverted ? {

3420 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateX: Math.round(navigator.left + navigator.height / 2 - 8),

3421 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateY: Math.round(navigator.top + parseInt(x, 10) + 0.5)

3422 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } : {

3423 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateX: Math.round(navigator.left + parseInt(x, 10)),

3424 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateY: Math.round(navigator.top + navigator.height / 2 - 8)

3425 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3426 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3427  
3428 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3429 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Draw one of the handles on the side of the zoomed range in the navigator

3430 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Boolean} inverted flag for chart.inverted

3431 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @returns {Array} Path to be used in a handle

3432 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3433 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { getHandlePath: function(inverted) {

3434 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return swapXY([

3435 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M', -4.5, 0.5,

3436 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3437 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 3.5, 0.5,

3438 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3439 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 3.5, 15.5,

3440 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L', -4.5, 15.5,

3441 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L', -4.5, 0.5,

3442 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M', -1.5, 4,

3443 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L', -1.5, 12,

3444 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M',

3445 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0.5, 4,

3446 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3447 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0.5, 12

3448 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ], inverted);

3449 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3450 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3451 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Render outline around the zoomed range

3452 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} zoomedMin in pixels position where zoomed range starts

3453 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} zoomedMax in pixels position where zoomed range ends

3454 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Boolean} inverted flag if chart is inverted

3455 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {String} verb use 'animate' or 'attr'

3456 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3457 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { drawOutline: function(zoomedMin, zoomedMax, inverted, verb) {

3458 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

3459 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maskInside = navigator.navigatorOptions.maskInside,

3460 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { outlineWidth = navigator.outline.strokeWidth(),

3461 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { halfOutline = outlineWidth / 2,

3462 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { outlineCorrection = (outlineWidth % 2) / 2, // #5800

3463 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { outlineHeight = navigator.outlineHeight,

3464 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarHeight = navigator.scrollbarHeight,

3465 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSize = navigator.size,

3466 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left = navigator.left - scrollbarHeight,

3467 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop = navigator.top,

3468 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { verticalMin,

3469 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { path;

3470  
3471 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (inverted) {

3472 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left -= halfOutline;

3473 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { verticalMin = navigatorTop + zoomedMax + outlineCorrection;

3474 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax = navigatorTop + zoomedMin + outlineCorrection;

3475  
3476 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { path = [

3477 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M',

3478 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left + outlineHeight,

3479 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop - scrollbarHeight - outlineCorrection, // top edge

3480 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3481 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left + outlineHeight,

3482 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { verticalMin, // top right of zoomed range

3483 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3484 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left,

3485 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { verticalMin, // top left of z.r.

3486 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3487 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left,

3488 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax, // bottom left of z.r.

3489 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3490 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left + outlineHeight,

3491 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax, // bottom right of z.r.

3492 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3493 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left + outlineHeight,

3494 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop + navigatorSize + scrollbarHeight // bottom edge

3495 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ].concat(maskInside ? [

3496 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M',

3497 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left + outlineHeight,

3498 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { verticalMin - halfOutline, // upper left of zoomed range

3499 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3500 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left + outlineHeight,

3501 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax + halfOutline // upper right of z.r.

3502 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ] : []);

3503 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3504 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin += left + scrollbarHeight - outlineCorrection;

3505 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax += left + scrollbarHeight - outlineCorrection;

3506 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop += halfOutline;

3507  
3508 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { path = [

3509 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M',

3510 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left,

3511 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop, // left

3512 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3513 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin,

3514 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop, // upper left of zoomed range

3515 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3516 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin,

3517 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop + outlineHeight, // lower left of z.r.

3518 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3519 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax,

3520 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop + outlineHeight, // lower right of z.r.

3521 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3522 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax,

3523 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop, // upper right of z.r.

3524 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3525 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left + navigatorSize + scrollbarHeight * 2,

3526 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop // right

3527 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ].concat(maskInside ? [

3528 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'M',

3529 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin - halfOutline,

3530 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop, // upper left of zoomed range

3531 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'L',

3532 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax + halfOutline,

3533 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorTop // upper right of z.r.

3534 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ] : []);

3535 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3536 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.outline[verb]({

3537 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { d: path

3538 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3539 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3540  
3541 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3542 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Render outline around the zoomed range

3543 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} zoomedMin in pixels position where zoomed range starts

3544 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} zoomedMax in pixels position where zoomed range ends

3545 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Boolean} inverted flag if chart is inverted

3546 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {String} verb use 'animate' or 'attr'

3547 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3548 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { drawMasks: function(zoomedMin, zoomedMax, inverted, verb) {

3549 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

3550 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left = navigator.left,

3551 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { top = navigator.top,

3552 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorHeight = navigator.height,

3553 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height,

3554 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width,

3555 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x,

3556 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y;

3557  
3558 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Determine rectangle position & size

3559 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // According to (non)inverted position:

3560 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (inverted) {

3561 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x = [left, left, left];

3562 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y = [top, top + zoomedMin, top + zoomedMax];

3563 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width = [navigatorHeight, navigatorHeight, navigatorHeight];

3564 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height = [

3565 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin,

3566 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax - zoomedMin,

3567 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.size - zoomedMax

3568 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ];

3569 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3570 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x = [left, left + zoomedMin, left + zoomedMax];

3571 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y = [top, top, top];

3572 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width = [

3573 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin,

3574 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax - zoomedMin,

3575 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.size - zoomedMax

3576 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ];

3577 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height = [navigatorHeight, navigatorHeight, navigatorHeight];

3578 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3579 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(navigator.shades, function(shade, i) {

3580 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { shade[verb]({

3581 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x: x[i],

3582 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y: y[i],

3583 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: width[i],

3584 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: height[i]

3585 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3586 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3587 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3588  
3589 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3590 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Generate DOM elements for a navigator:

3591 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * - main navigator group

3592 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * - all shades

3593 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * - outline

3594 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * - handles

3595 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3596 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { renderElements: function() {

3597 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

3598 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorOptions = navigator.navigatorOptions,

3599 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maskInside = navigatorOptions.maskInside,

3600 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = navigator.chart,

3601 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inverted = chart.inverted,

3602 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { renderer = chart.renderer,

3603 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorGroup;

3604  
3605 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create the main navigator group

3606 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.navigatorGroup = navigatorGroup = renderer.g('navigator')

3607 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

3608 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zIndex: 8,

3609 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { visibility: 'hidden'

3610 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

3611 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add();

3612  
3613  
3614  
3615 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var mouseCursor = {

3616 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { cursor: inverted ? 'ns-resize' : 'ew-resize'

3617 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

3618  
3619  
3620 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create masks, each mask will get events and fill:

3621 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each([!maskInside, maskInside, !maskInside], function(hasMask, index) {

3622 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.shades[index] = renderer.rect()

3623 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-navigator-mask' +

3624 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (index === 1 ? '-inside' : '-outside'))

3625  
3626 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

3627 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fill: hasMask ? navigatorOptions.maskFill : 'rgba(0,0,0,0)'

3628 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

3629 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .css(index === 1 && mouseCursor)

3630  
3631 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(navigatorGroup);

3632 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3633  
3634 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create the outline:

3635 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.outline = renderer.path()

3636 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-navigator-outline')

3637  
3638 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

3639 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'stroke-width': navigatorOptions.outlineWidth,

3640 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stroke: navigatorOptions.outlineColor

3641 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

3642  
3643 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(navigatorGroup);

3644  
3645 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create the handlers:

3646 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each([0, 1], function(index) {

3647 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.handles[index] = renderer

3648 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .path(navigator.getHandlePath(inverted))

3649 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // zIndex = 6 for right handle, 7 for left.

3650 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Can't be 10, because of the tooltip in inverted chart #2908

3651 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

3652 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zIndex: 7 - index

3653 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

3654 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass(

3655 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'highcharts-navigator-handle highcharts-navigator-handle-' + ['left', 'right'][index]

3656 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ).add(navigatorGroup);

3657  
3658  
3659 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var handlesOptions = navigatorOptions.handles;

3660 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.handles[index]

3661 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

3662 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fill: handlesOptions.backgroundColor,

3663 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stroke: handlesOptions.borderColor,

3664 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'stroke-width': 1

3665 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

3666 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .css(mouseCursor);

3667  
3668 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3669 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3670  
3671 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3672 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Update navigator

3673 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} options Options to merge in when updating navigator

3674 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3675 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { update: function(options) {

3676 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.destroy();

3677 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var chartOptions = this.chart.options;

3678 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { merge(true, chartOptions.navigator, this.options, options);

3679 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.init(this.chart);

3680 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3681  
3682 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3683 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Render the navigator

3684 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} min X axis value minimum

3685 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} max X axis value maximum

3686 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} pxMin Pixel value minimum

3687 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} pxMax Pixel value maximum

3688 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3689 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { render: function(min, max, pxMin, pxMax) {

3690 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

3691 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = navigator.chart,

3692 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorWidth,

3693 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarLeft,

3694 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarTop,

3695 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarHeight = navigator.scrollbarHeight,

3696 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSize,

3697 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis = navigator.xAxis,

3698 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarXAxis = xAxis.fake ? chart.xAxis[0] : xAxis,

3699 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorEnabled = navigator.navigatorEnabled,

3700 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin,

3701 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax,

3702 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rendered = navigator.rendered,

3703 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inverted = chart.inverted,

3704 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { verb,

3705 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin,

3706 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax,

3707 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minRange = chart.xAxis[0].minRange;

3708  
3709 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Don't redraw while moving the handles (#4703).

3710 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.hasDragged && !defined(pxMin)) {

3711 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return;

3712 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3713  
3714 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Don't render the navigator until we have data (#486, #4202, #5172).

3715 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!isNumber(min) || !isNumber(max)) {

3716 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // However, if navigator was already rendered, we may need to resize

3717 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // it. For example hidden series, but visible navigator (#6022).

3718 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (rendered) {

3719 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pxMin = 0;

3720 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pxMax = xAxis.width;

3721 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3722 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return;

3723 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3724 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3725  
3726 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.left = pick(

3727 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis.left,

3728 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // in case of scrollbar only, without navigator

3729 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.plotLeft + scrollbarHeight + (inverted ? chart.plotWidth : 0)

3730 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3731  
3732 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.size = zoomedMax = navigatorSize = pick(

3733 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis.len,

3734 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (inverted ? chart.plotHeight : chart.plotWidth) - 2 * scrollbarHeight

3735 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3736  
3737 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (inverted) {

3738 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorWidth = scrollbarHeight;

3739 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3740 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorWidth = navigatorSize + 2 * scrollbarHeight;

3741 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3742  
3743 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Get the pixel position of the handles

3744 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pxMin = pick(pxMin, xAxis.toPixels(min, true));

3745 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pxMax = pick(pxMax, xAxis.toPixels(max, true));

3746  
3747 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!isNumber(pxMin) || Math.abs(pxMin) === Infinity) { // Verify (#1851, #2238)

3748 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pxMin = 0;

3749 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pxMax = navigatorWidth;

3750 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3751  
3752 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Are we below the minRange? (#2618, #6191)

3753 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = xAxis.toValue(pxMin, true);

3754 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = xAxis.toValue(pxMax, true);

3755 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (Math.abs(newMax - newMin) < minRange) {

3756 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.grabbedLeft) {

3757 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pxMin = xAxis.toPixels(newMax - minRange, true);

3758 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (this.grabbedRight) {

3759 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pxMax = xAxis.toPixels(newMin + minRange, true);

3760 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3761 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return;

3762 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3763 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3764  
3765 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Handles are allowed to cross, but never exceed the plot area

3766 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.zoomedMax = Math.min(Math.max(pxMin, pxMax, 0), zoomedMax);

3767 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.zoomedMin = Math.min(

3768 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Math.max(

3769 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.fixedWidth ?

3770 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.zoomedMax - navigator.fixedWidth :

3771 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Math.min(pxMin, pxMax),

3772  
3773 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ),

3774 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax

3775 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3776  
3777 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.range = navigator.zoomedMax - navigator.zoomedMin;

3778  
3779 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMax = Math.round(navigator.zoomedMax);

3780 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin = Math.round(navigator.zoomedMin);

3781  
3782 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigatorEnabled) {

3783 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.navigatorGroup.attr({

3784 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { visibility: 'visible'

3785 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3786 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Place elements

3787 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { verb = rendered && !navigator.hasDragged ? 'animate' : 'attr';

3788  
3789 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.drawMasks(zoomedMin, zoomedMax, inverted, verb);

3790 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.drawOutline(zoomedMin, zoomedMax, inverted, verb);

3791 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.drawHandle(zoomedMin, 0, inverted, verb);

3792 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.drawHandle(zoomedMax, 1, inverted, verb);

3793 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3794  
3795 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator.scrollbar) {

3796 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (inverted) {

3797 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarTop = navigator.top - scrollbarHeight;

3798 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarLeft = navigator.left - scrollbarHeight +

3799 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (navigatorEnabled || !scrollbarXAxis.opposite ? 0 :

3800 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Multiple axes has offsets:

3801 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (scrollbarXAxis.titleOffset || 0) +

3802 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Self margin from the axis.title

3803 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarXAxis.axisTitleMargin

3804 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3805 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarHeight = navigatorSize + 2 * scrollbarHeight;

3806 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3807 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarTop = navigator.top +

3808 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (navigatorEnabled ? navigator.height : -scrollbarHeight);

3809 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarLeft = navigator.left - scrollbarHeight;

3810 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3811 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Reposition scrollbar

3812 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.scrollbar.position(

3813 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarLeft,

3814 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarTop,

3815 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorWidth,

3816 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarHeight

3817 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3818 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Keep scale 0-1

3819 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.scrollbar.setRange(

3820 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Use real value, not rounded because range can be very small (#1716)

3821 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.zoomedMin / navigatorSize,

3822 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.zoomedMax / navigatorSize

3823 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3824 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3825 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.rendered = true;

3826 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3827  
3828 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3829 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Set up the mouse and touch events for the navigator

3830 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3831 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addMouseEvents: function() {

3832 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

3833 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = navigator.chart,

3834 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { container = chart.container,

3835 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { eventsToUnbind = [],

3836 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mouseMoveHandler,

3837 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mouseUpHandler;

3838  
3839 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3840 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Create mouse events' handlers.

3841 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Make them as separate functions to enable wrapping them:

3842 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3843 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.mouseMoveHandler = mouseMoveHandler = function(e) {

3844 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.onMouseMove(e);

3845 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

3846 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.mouseUpHandler = mouseUpHandler = function(e) {

3847 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.onMouseUp(e);

3848 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

3849  
3850 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add shades and handles mousedown events

3851 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { eventsToUnbind = navigator.getPartsEvents('mousedown');

3852 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add mouse move and mouseup events. These are bind to doc/container,

3853 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // because Navigator.grabbedSomething flags are stored in mousedown events:

3854 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { eventsToUnbind.push(

3855 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(container, 'mousemove', mouseMoveHandler),

3856 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(doc, 'mouseup', mouseUpHandler)

3857 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3858  
3859 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Touch events

3860 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (hasTouch) {

3861 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { eventsToUnbind.push(

3862 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(container, 'touchmove', mouseMoveHandler),

3863 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(doc, 'touchend', mouseUpHandler)

3864 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3865 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { eventsToUnbind.concat(navigator.getPartsEvents('touchstart'));

3866 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3867  
3868 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.eventsToUnbind = eventsToUnbind;

3869  
3870 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Data events

3871 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator.series && navigator.series[0]) {

3872 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { eventsToUnbind.push(

3873 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(navigator.series[0].xAxis, 'foundExtremes', function() {

3874 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.navigator.modifyNavigatorAxisExtremes();

3875 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

3876 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3877 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3878 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3879  
3880 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3881 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Generate events for handles and masks

3882 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {String} eventName Event name handler, 'mousedown' or 'touchstart'

3883 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @returns {Array} An array of arrays: [DOMElement, eventName, callback].

3884 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3885 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { getPartsEvents: function(eventName) {

3886 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

3887 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { events = [];

3888 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(['shades', 'handles'], function(name) {

3889 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(navigator[name], function(navigatorItem, index) {

3890 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { events.push(

3891 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(

3892 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorItem.element,

3893 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { eventName,

3894 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { function(e) {

3895 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator[name + 'Mousedown'](e, index);

3896 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3897 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { )

3898 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3899 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3900 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

3901 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return events;

3902 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3903  
3904 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3905 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Mousedown on a shaded mask, either:

3906 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * - will be stored for future drag&drop

3907 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * - will directly shift to a new range

3908 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *

3909 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} e Mouse event

3910 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} index Index of a mask in Navigator.shades array

3911 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3912 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { shadesMousedown: function(e, index) {

3913 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { e = this.chart.pointer.normalize(e);

3914  
3915 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

3916 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = navigator.chart,

3917 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis = navigator.xAxis,

3918 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomedMin = navigator.zoomedMin,

3919 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorPosition = navigator.left,

3920 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSize = navigator.size,

3921 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { range = navigator.range,

3922 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX = e.chartX,

3923 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMax,

3924 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ext,

3925 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left;

3926  
3927 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // For inverted chart, swap some options:

3928 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (chart.inverted) {

3929 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX = e.chartY;

3930 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorPosition = navigator.top;

3931 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3932  
3933 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (index === 1) {

3934 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Store information for drag&drop

3935 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.grabbedCenter = chartX;

3936 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.fixedWidth = range;

3937 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.dragOffset = chartX - zoomedMin;

3938 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3939 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Shift the range by clicking on shaded areas

3940 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left = chartX - navigatorPosition - range / 2;

3941 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (index === 0) {

3942 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left = Math.max(0, left);

3943 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (index === 2 && left + range >= navigatorSize) {

3944 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left = navigatorSize - range;

3945 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMax = navigator.getUnionExtremes().dataMax; // #2293, #3543

3946 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3947 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (left !== zoomedMin) { // it has actually moved

3948 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.fixedWidth = range; // #1370

3949  
3950 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ext = xAxis.toFixedRange(left, left + range, null, fixedMax);

3951 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.xAxis[0].setExtremes(

3952 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Math.min(ext.min, ext.max),

3953 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Math.max(ext.min, ext.max),

3954 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { true,

3955 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { null, // auto animation

3956 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { {

3957 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'navigator'

3958 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3959 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

3960 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3961 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3962 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3963  
3964 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3965 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Mousedown on a handle mask.

3966 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Will store necessary information for drag&drop.

3967 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *

3968 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} e Mouse event

3969 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} index Index of a handle in Navigator.handles array

3970 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

3971 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { handlesMousedown: function(e, index) {

3972 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { e = this.chart.pointer.normalize(e);

3973  
3974 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

3975 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = navigator.chart,

3976 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxis = chart.xAxis[0],

3977 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // For reversed axes, min and max are chagned,

3978 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // so the other extreme should be stored

3979 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { reverse = (chart.inverted && !baseXAxis.reversed) ||

3980 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (!chart.inverted && baseXAxis.reversed);

3981  
3982 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (index === 0) {

3983 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Grab the left handle

3984 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.grabbedLeft = true;

3985 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.otherHandlePos = navigator.zoomedMax;

3986 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.fixedExtreme = reverse ? baseXAxis.min : baseXAxis.max;

3987 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

3988 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Grab the right handle

3989 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.grabbedRight = true;

3990 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.otherHandlePos = navigator.zoomedMin;

3991 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.fixedExtreme = reverse ? baseXAxis.max : baseXAxis.min;

3992 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

3993  
3994 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.fixedRange = null;

3995 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

3996 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

3997 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Mouse move event based on x/y mouse position.

3998 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} e Mouse event

3999 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4000 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { onMouseMove: function(e) {

4001 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

4002 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = navigator.chart,

4003 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left = navigator.left,

4004 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSize = navigator.navigatorSize,

4005 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { range = navigator.range,

4006 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dragOffset = navigator.dragOffset,

4007 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inverted = chart.inverted,

4008 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX;

4009  
4010  
4011 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // In iOS, a mousemove event with e.pageX === 0 is fired when holding the finger

4012 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // down in the center of the scrollbar. This should be ignored.

4013 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!e.touches || e.touches[0].pageX !== 0) { // #4696, scrollbar failed on Android

4014  
4015 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { e = chart.pointer.normalize(e);

4016 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX = e.chartX;

4017  
4018 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Swap some options for inverted chart

4019 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (inverted) {

4020 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left = navigator.top;

4021 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX = e.chartY;

4022 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4023  
4024 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Drag left handle or top handle

4025 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator.grabbedLeft) {

4026 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.hasDragged = true;

4027 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.render(

4028 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0,

4029 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0,

4030 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX - left,

4031 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.otherHandlePos

4032 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

4033 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Drag right handle or bottom handle

4034 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (navigator.grabbedRight) {

4035 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.hasDragged = true;

4036 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.render(

4037 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0,

4038 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0,

4039 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.otherHandlePos,

4040 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX - left

4041 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

4042 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Drag scrollbar or open area in navigator

4043 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (navigator.grabbedCenter) {

4044 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.hasDragged = true;

4045 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (chartX < dragOffset) { // outside left

4046 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX = dragOffset;

4047 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (chartX > navigatorSize + dragOffset - range) { // outside right

4048 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX = navigatorSize + dragOffset - range;

4049 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4050  
4051 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.render(

4052 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0,

4053 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0,

4054 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX - dragOffset,

4055 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartX - dragOffset + range

4056 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

4057 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4058 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator.hasDragged && navigator.scrollbar && navigator.scrollbar.options.liveRedraw) {

4059 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { e.DOMType = e.type; // DOMType is for IE8 because it can't read type async

4060 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { setTimeout(function() {

4061 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.onMouseUp(e);

4062 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, 0);

4063 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4064 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4065 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4066  
4067 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4068 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Mouse up event based on x/y mouse position.

4069 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} e Mouse event

4070 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4071 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { onMouseUp: function(e) {

4072 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

4073 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = navigator.chart,

4074 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis = navigator.xAxis,

4075 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbar = navigator.scrollbar,

4076 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMin,

4077 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMax,

4078 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ext,

4079 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMEvent = e.DOMEvent || e;

4080  
4081 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (

4082 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // MouseUp is called for both, navigator and scrollbar (that order),

4083 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // which causes calling afterSetExtremes twice. Prevent first call

4084 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // by checking if scrollbar is going to set new extremes (#6334)

4085 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (navigator.hasDragged && (!scrollbar || !scrollbar.hasDragged)) ||

4086 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { e.trigger === 'scrollbar'

4087 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ) {

4088 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // When dragging one handle, make sure the other one doesn't change

4089 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator.zoomedMin === navigator.otherHandlePos) {

4090 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMin = navigator.fixedExtreme;

4091 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (navigator.zoomedMax === navigator.otherHandlePos) {

4092 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMax = navigator.fixedExtreme;

4093 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4094 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Snap to right edge (#4076)

4095 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator.zoomedMax === navigator.size) {

4096 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMax = navigator.getUnionExtremes().dataMax;

4097 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4098 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ext = xAxis.toFixedRange(

4099 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.zoomedMin,

4100 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.zoomedMax,

4101 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMin,

4102 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedMax

4103 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

4104  
4105 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (defined(ext.min)) {

4106 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.xAxis[0].setExtremes(

4107 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Math.min(ext.min, ext.max),

4108 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Math.max(ext.min, ext.max),

4109 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { true,

4110 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.hasDragged ? false : null, // Run animation when clicking buttons, scrollbar track etc, but not when dragging handles or scrollbar

4111 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { {

4112 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'navigator',

4113 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { triggerOp: 'navigator-drag',

4114 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { DOMEvent: DOMEvent // #1838

4115 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4116 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

4117 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4118 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4119  
4120 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (e.DOMType !== 'mousemove') {

4121 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.grabbedLeft = navigator.grabbedRight =

4122 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.grabbedCenter = navigator.fixedWidth =

4123 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.fixedExtreme = navigator.otherHandlePos =

4124 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.hasDragged = navigator.dragOffset = null;

4125 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4126 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4127  
4128 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4129 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Removes the event handlers attached previously with addEvents.

4130 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4131 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { removeEvents: function() {

4132 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.eventsToUnbind) {

4133 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(this.eventsToUnbind, function(unbind) {

4134 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { unbind();

4135 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4136 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.eventsToUnbind = undefined;

4137 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4138 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.removeBaseSeriesEvents();

4139 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4140  
4141 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4142 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Remove data events.

4143 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4144 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { removeBaseSeriesEvents: function() {

4145 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var baseSeries = this.baseSeries || [];

4146 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.navigatorEnabled && baseSeries[0] && this.navigatorOptions.adaptToUpdatedData !== false) {

4147 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(baseSeries, function(series) {

4148 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { removeEvent(series, 'updatedData', this.updatedDataHandler);

4149 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, this);

4150  
4151 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // We only listen for extremes-events on the first baseSeries

4152 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (baseSeries[0].xAxis) {

4153 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { removeEvent(baseSeries[0].xAxis, 'foundExtremes', this.modifyBaseAxisExtremes);

4154 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4155 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4156 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4157  
4158 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4159 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Initiate the Navigator object

4160 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4161 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { init: function(chart) {

4162 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var chartOptions = chart.options,

4163 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorOptions = chartOptions.navigator,

4164 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorEnabled = navigatorOptions.enabled,

4165 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarOptions = chartOptions.scrollbar,

4166 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarEnabled = scrollbarOptions.enabled,

4167 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height = navigatorEnabled ? navigatorOptions.height : 0,

4168 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarHeight = scrollbarEnabled ? scrollbarOptions.height : 0;

4169  
4170 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.handles = [];

4171 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.shades = [];

4172  
4173 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.chart = chart;

4174 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.setBaseSeries();

4175  
4176 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.height = height;

4177 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.scrollbarHeight = scrollbarHeight;

4178 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.scrollbarEnabled = scrollbarEnabled;

4179 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.navigatorEnabled = navigatorEnabled;

4180 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.navigatorOptions = navigatorOptions;

4181 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.scrollbarOptions = scrollbarOptions;

4182 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.outlineHeight = height + scrollbarHeight;

4183  
4184 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.opposite = pick(navigatorOptions.opposite, !navigatorEnabled && chart.inverted); // #6262

4185  
4186 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

4187 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseSeries = navigator.baseSeries,

4188 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxisIndex = chart.xAxis.length,

4189 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yAxisIndex = chart.yAxis.length,

4190 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXaxis = baseSeries && baseSeries[0] && baseSeries[0].xAxis || chart.xAxis[0];

4191  
4192 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Make room for the navigator, can be placed around the chart:

4193 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.extraMargin = {

4194 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: navigator.opposite ? 'plotTop' : 'marginBottom',

4195 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value: (navigatorEnabled || !chart.inverted ? navigator.outlineHeight : 0) + navigatorOptions.margin

4196 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

4197 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (chart.inverted) {

4198 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.extraMargin.type = navigator.opposite ? 'marginRight' : 'plotLeft';

4199 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4200 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.isDirtyBox = true;

4201  
4202 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator.navigatorEnabled) {

4203 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // an x axis is required for scrollbar also

4204 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.xAxis = new Axis(chart, merge({

4205 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // inherit base xAxis' break and ordinal options

4206 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { breaks: baseXaxis.options.breaks,

4207 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ordinal: baseXaxis.options.ordinal

4208 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, navigatorOptions.xAxis, {

4209 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { id: 'navigator-x-axis',

4210 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yAxis: 'navigator-y-axis',

4211 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isX: true,

4212 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: 'datetime',

4213 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { index: xAxisIndex,

4214 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { offset: 0,

4215 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { keepOrdinalPadding: true, // #2436

4216 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { startOnTick: false,

4217 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { endOnTick: false,

4218 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minPadding: 0,

4219 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maxPadding: 0,

4220 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomEnabled: false

4221 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, chart.inverted ? {

4222 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { offsets: [scrollbarHeight, 0, -scrollbarHeight, 0],

4223 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: height

4224 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } : {

4225 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { offsets: [0, -scrollbarHeight, 0, scrollbarHeight],

4226 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: height

4227 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }));

4228  
4229 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.yAxis = new Axis(chart, merge(navigatorOptions.yAxis, {

4230 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { id: 'navigator-y-axis',

4231 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { alignTicks: false,

4232 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { offset: 0,

4233 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { index: yAxisIndex,

4234 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomEnabled: false

4235 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, chart.inverted ? {

4236 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: height

4237 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } : {

4238 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: height

4239 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }));

4240  
4241 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If we have a base series, initialize the navigator series

4242 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (baseSeries || navigatorOptions.series.data) {

4243 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.addBaseSeries();

4244  
4245 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If not, set up an event to listen for added series

4246 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (chart.series.length === 0) {

4247  
4248 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(chart, 'redraw', function(proceed, animation) {

4249 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // We've got one, now add it as base and reset chart.redraw

4250 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (chart.series.length > 0 && !navigator.series) {

4251 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.setBaseSeries();

4252 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.redraw = proceed; // reset

4253 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4254 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.call(chart, animation);

4255 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4256 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4257  
4258 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Render items, so we can bind events to them:

4259 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.renderElements();

4260 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add mouse events

4261 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.addMouseEvents();

4262  
4263 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // in case of scrollbar only, fake an x axis to get translation

4264 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

4265 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.xAxis = {

4266 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translate: function(value, reverse) {

4267 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var axis = chart.xAxis[0],

4268 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ext = axis.getExtremes(),

4269 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollTrackWidth = axis.len - 2 * scrollbarHeight,

4270 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { min = numExt('min', axis.options.min, ext.dataMin),

4271 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { valueRange = numExt('max', axis.options.max, ext.dataMax) - min;

4272  
4273 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return reverse ?

4274 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // from pixel to value

4275 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (value * valueRange / scrollTrackWidth) + min :

4276 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // from value to pixel

4277 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollTrackWidth * (value - min) / valueRange;

4278 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4279 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { toPixels: function(value) {

4280 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return this.translate(value);

4281 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4282 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { toValue: function(value) {

4283 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return this.translate(value, true);

4284 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4285 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { toFixedRange: Axis.prototype.toFixedRange,

4286 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fake: true

4287 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

4288 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4289  
4290  
4291 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Initialize the scrollbar

4292 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (chart.options.scrollbar.enabled) {

4293 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.scrollbar = navigator.scrollbar = new Scrollbar(

4294 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.renderer,

4295 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { merge(chart.options.scrollbar, {

4296 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { margin: navigator.navigatorEnabled ? 0 : 10,

4297 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { vertical: chart.inverted

4298 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }),

4299 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart

4300 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

4301 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(navigator.scrollbar, 'changed', function(e) {

4302 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var range = navigator.size,

4303 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { to = range * this.to,

4304 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { from = range * this.from;

4305  
4306 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.hasDragged = navigator.scrollbar.hasDragged;

4307 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.render(0, 0, from, to);

4308  
4309 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (chart.options.scrollbar.liveRedraw || e.DOMType !== 'mousemove') {

4310 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { setTimeout(function() {

4311 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.onMouseUp(e);

4312 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4313 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4314 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4315 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4316  
4317 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add data events

4318 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.addBaseSeriesEvents();

4319 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add redraw events

4320 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.addChartEvents();

4321 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4322  
4323 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4324 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Get the union data extremes of the chart - the outer data extremes of the base

4325 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * X axis and the navigator axis.

4326 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {boolean} returnFalseOnNoBaseSeries - as the param says.

4327 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4328 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { getUnionExtremes: function(returnFalseOnNoBaseSeries) {

4329 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var baseAxis = this.chart.xAxis[0],

4330 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navAxis = this.xAxis,

4331 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navAxisOptions = navAxis.options,

4332 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseAxisOptions = baseAxis.options,

4333 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ret;

4334  
4335 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!returnFalseOnNoBaseSeries || baseAxis.dataMin !== null) {

4336 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ret = {

4337 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMin: pick( // #4053

4338 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navAxisOptions && navAxisOptions.min,

4339 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { numExt(

4340 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'min',

4341 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseAxisOptions.min,

4342 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseAxis.dataMin,

4343 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navAxis.dataMin,

4344 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navAxis.min

4345 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { )

4346 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ),

4347 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMax: pick(

4348 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navAxisOptions && navAxisOptions.max,

4349 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { numExt(

4350 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'max',

4351 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseAxisOptions.max,

4352 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseAxis.dataMax,

4353 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navAxis.dataMax,

4354 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navAxis.max

4355 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { )

4356 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { )

4357 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

4358 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4359 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return ret;

4360 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4361  
4362 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4363 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Set the base series. With a bit of modification we should be able to make

4364 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * this an API method to be called from the outside

4365 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} baseSeriesOptions - series options for a navigator

4366 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4367 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { setBaseSeries: function(baseSeriesOptions) {

4368 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var chart = this.chart,

4369 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseSeries;

4370  
4371 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseSeriesOptions = baseSeriesOptions || chart.options && chart.options.navigator.baseSeries || 0;

4372  
4373 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If we're resetting, remove the existing series

4374 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.series) {

4375 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.removeBaseSeriesEvents();

4376 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(this.series, function(s) {

4377 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { s.destroy();

4378 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4379 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4380  
4381 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseSeries = this.baseSeries = [];

4382  
4383 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Iterate through series and add the ones that should be shown in navigator

4384 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(chart.series || [], function(series, i) {

4385 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (series.options.showInNavigator || (i === baseSeriesOptions || series.options.id === baseSeriesOptions) &&

4386 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { series.options.showInNavigator !== false) {

4387 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseSeries.push(series);

4388 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4389 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4390  
4391 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // When run after render, this.xAxis already exists

4392 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.xAxis && !this.xAxis.fake) {

4393 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.addBaseSeries();

4394 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4395 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4396  
4397 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /*

4398 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Add base series to the navigator.

4399 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4400 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addBaseSeries: function() {

4401 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

4402 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = navigator.chart,

4403 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries = navigator.series = [],

4404 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseSeries = navigator.baseSeries,

4405 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseOptions,

4406 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mergedNavSeriesOptions,

4407 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartNavigatorOptions = navigator.navigatorOptions.series,

4408 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseNavigatorOptions,

4409 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navSeriesMixin = {

4410 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { enableMouseTracking: false,

4411 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { index: null, // #6162

4412 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { group: 'nav', // for columns

4413 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { padXAxis: false,

4414 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis: 'navigator-x-axis',

4415 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yAxis: 'navigator-y-axis',

4416 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { showInLegend: false,

4417 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stacking: false, // #4823

4418 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isInternal: true,

4419 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { visible: true

4420 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

4421  
4422 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Go through each base series and merge the options to create new series

4423 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (baseSeries) {

4424 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(baseSeries, function(base, i) {

4425 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navSeriesMixin.name = 'Navigator ' + (i + 1);

4426  
4427 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseOptions = base.options || {};

4428 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseNavigatorOptions = baseOptions.navigatorOptions || {};

4429 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mergedNavSeriesOptions = merge(baseOptions, navSeriesMixin, chartNavigatorOptions, baseNavigatorOptions);

4430  
4431 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Merge data separately. Do a slice to avoid mutating the navigator options from base series (#4923).

4432 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigatorSeriesData = baseNavigatorOptions.data || chartNavigatorOptions.data;

4433 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.hasNavigatorData = navigator.hasNavigatorData || !!navigatorSeriesData;

4434 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mergedNavSeriesOptions.data = navigatorSeriesData || baseOptions.data && baseOptions.data.slice(0);

4435  
4436 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Add the series

4437 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { base.navigatorSeries = chart.initSeries(mergedNavSeriesOptions);

4438 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries.push(base.navigatorSeries);

4439 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4440 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

4441 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // No base series, build from mixin and chart wide options

4442 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mergedNavSeriesOptions = merge(chartNavigatorOptions, navSeriesMixin);

4443 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { mergedNavSeriesOptions.data = chartNavigatorOptions.data;

4444 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.hasNavigatorData = !!mergedNavSeriesOptions.data;

4445 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries.push(chart.initSeries(mergedNavSeriesOptions));

4446 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4447  
4448 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.addBaseSeriesEvents();

4449 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4450  
4451 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4452 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Add data events.

4453 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * For example when main series is updated we need to recalculate extremes

4454 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4455 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addBaseSeriesEvents: function() {

4456 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this,

4457 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseSeries = navigator.baseSeries || [];

4458  
4459 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Bind modified extremes event to first base's xAxis only. In event of > 1 base-xAxes, the navigator will ignore those.

4460 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (baseSeries[0] && baseSeries[0].xAxis) {

4461 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(baseSeries[0].xAxis, 'foundExtremes', this.modifyBaseAxisExtremes);

4462 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4463  
4464 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.navigatorOptions.adaptToUpdatedData !== false) {

4465 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Respond to updated data in the base series.

4466 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Abort if lazy-loading data from the server.

4467 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(baseSeries, function(base) {

4468 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (base.xAxis) {

4469 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(base, 'updatedData', this.updatedDataHandler);

4470 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4471  
4472 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Handle series removal

4473 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(base, 'remove', function() {

4474 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.navigatorSeries) {

4475 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { erase(navigator.series, this.navigatorSeries);

4476 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.navigatorSeries.remove(false);

4477 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { delete this.navigatorSeries;

4478 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4479 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4480 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, this);

4481 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4482 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4483  
4484 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4485 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Set the navigator x axis extremes to reflect the total. The navigator extremes

4486 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * should always be the extremes of the union of all series in the chart as

4487 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * well as the navigator series.

4488 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4489 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { modifyNavigatorAxisExtremes: function() {

4490 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var xAxis = this.xAxis,

4491 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { unionExtremes;

4492  
4493 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (xAxis.getExtremes) {

4494 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { unionExtremes = this.getUnionExtremes(true);

4495 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (unionExtremes && (unionExtremes.dataMin !== xAxis.min || unionExtremes.dataMax !== xAxis.max)) {

4496 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis.min = unionExtremes.dataMin;

4497 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis.max = unionExtremes.dataMax;

4498 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4499 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4500 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4501  
4502 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4503 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Hook to modify the base axis extremes with information from the Navigator

4504 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4505 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { modifyBaseAxisExtremes: function() {

4506 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var baseXAxis = this,

4507 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator = baseXAxis.chart.navigator,

4508 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseExtremes = baseXAxis.getExtremes(),

4509 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseMin = baseExtremes.min,

4510 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseMax = baseExtremes.max,

4511 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseDataMin = baseExtremes.dataMin,

4512 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseDataMax = baseExtremes.dataMax,

4513 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { range = baseMax - baseMin,

4514 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stickToMin = navigator.stickToMin,

4515 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stickToMax = navigator.stickToMax,

4516 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax,

4517 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin,

4518 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries = navigator.series && navigator.series[0],

4519 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { hasSetExtremes = !!baseXAxis.setExtremes,

4520  
4521 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // When the extremes have been set by range selector button, don't stick to min or max.

4522 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // The range selector buttons will handle the extremes. (#5489)

4523 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { unmutable = baseXAxis.eventArgs && baseXAxis.eventArgs.trigger === 'rangeSelectorButton';

4524  
4525 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!unmutable) {

4526  
4527 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If the zoomed range is already at the min, move it to the right as new data

4528 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // comes in

4529 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (stickToMin) {

4530 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = baseDataMin;

4531 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = newMin + range;

4532 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4533  
4534 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If the zoomed range is already at the max, move it to the right as new data

4535 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // comes in

4536 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (stickToMax) {

4537 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = baseDataMax;

4538 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!stickToMin) { // if stickToMin is true, the new min value is set above

4539 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = Math.max(

4540 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax - range,

4541 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries && navigatorSeries.xData ?

4542 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries.xData[0] : -Number.MAX_VALUE

4543 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

4544 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4545 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4546  
4547 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Update the extremes

4548 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (hasSetExtremes && (stickToMin || stickToMax)) {

4549 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (isNumber(newMin)) {

4550 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxis.min = baseXAxis.userMin = newMin;

4551 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxis.max = baseXAxis.userMax = newMax;

4552 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4553 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4554 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4555  
4556 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Reset

4557 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.stickToMin = navigator.stickToMax = null;

4558 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4559  
4560 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4561 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Handler for updated data on the base series. When data is modified, the navigator series

4562 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * must reflect it. This is called from the Chart.redraw function before axis and series

4563 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * extremes are computed.

4564 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4565 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { updatedDataHandler: function() {

4566 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this.chart.navigator,

4567 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseSeries = this,

4568 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries = this.navigatorSeries;

4569  
4570 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Detect whether the zoomed area should stick to the minimum or maximum. If the current

4571 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // axis minimum falls outside the new updated dataset, we must adjust.

4572 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.stickToMin = isNumber(baseSeries.xAxis.min) && (baseSeries.xAxis.min <= baseSeries.xData[0]);

4573 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If the scrollbar is scrolled all the way to the right, keep right as new data

4574 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // comes in.

4575 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.stickToMax = Math.round(navigator.zoomedMax) >= Math.round(navigator.size);

4576  
4577 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Set the navigator series data to the new data of the base series

4578 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigatorSeries && !navigator.hasNavigatorData) {

4579 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries.options.pointStart = baseSeries.xData[0];

4580 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigatorSeries.setData(baseSeries.options.data, false, null, false); // #5414

4581 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4582 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4583  
4584 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4585 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Add chart events, like redrawing navigator, when chart requires that.

4586 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4587 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addChartEvents: function() {

4588 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(this.chart, 'redraw', function() {

4589 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Move the scrollbar after redraw, like after data updata even if axes don't redraw

4590 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var navigator = this.navigator,

4591 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis = navigator && (

4592 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.baseSeries &&

4593 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.baseSeries[0] &&

4594 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.baseSeries[0].xAxis ||

4595 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.scrollbar && this.xAxis[0]

4596 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ); // #5709

4597  
4598 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (xAxis) {

4599 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.render(xAxis.min, xAxis.max);

4600 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4601 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4602 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4603  
4604 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4605 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Destroys allocated elements.

4606 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4607 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroy: function() {

4608  
4609 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Disconnect events added in addEvents

4610 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.removeEvents();

4611  
4612 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.xAxis) {

4613 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { erase(this.chart.xAxis, this.xAxis);

4614 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { erase(this.chart.axes, this.xAxis);

4615 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4616 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.yAxis) {

4617 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { erase(this.chart.yAxis, this.yAxis);

4618 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { erase(this.chart.axes, this.yAxis);

4619 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4620 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Destroy series

4621 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(this.series || [], function(s) {

4622 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (s.destroy) {

4623 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { s.destroy();

4624 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4625 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4626  
4627 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Destroy properties

4628 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each([

4629 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'series', 'xAxis', 'yAxis', 'shades', 'outline', 'scrollbarTrack',

4630 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'scrollbarRifles', 'scrollbarGroup', 'scrollbar', 'navigatorGroup',

4631 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'rendered'

4632 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ], function(prop) {

4633 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this[prop] && this[prop].destroy) {

4634 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this[prop].destroy();

4635 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4636 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this[prop] = null;

4637 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, this);

4638  
4639 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Destroy elements in collection

4640 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each([this.handles], function(coll) {

4641 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroyObjectProperties(coll);

4642 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, this);

4643 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4644 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

4645  
4646 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { H.Navigator = Navigator;

4647  
4648 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4649 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * For Stock charts, override selection zooming with some special features because

4650 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * X axis zooming is already allowed by the Navigator and Range selector.

4651 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4652 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Axis.prototype, 'zoom', function(proceed, newMin, newMax) {

4653 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var chart = this.chart,

4654 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartOptions = chart.options,

4655 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zoomType = chartOptions.chart.zoomType,

4656 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { previousZoom,

4657 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator = chartOptions.navigator,

4658 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector = chartOptions.rangeSelector,

4659 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ret;

4660  
4661 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.isXAxis && ((navigator && navigator.enabled) ||

4662 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (rangeSelector && rangeSelector.enabled))) {

4663  
4664 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // For x only zooming, fool the chart.zoom method not to create the zoom button

4665 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // because the property already exists

4666 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (zoomType === 'x') {

4667 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.resetZoomButton = 'blocked';

4668  
4669 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // For y only zooming, ignore the X axis completely

4670 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (zoomType === 'y') {

4671 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ret = false;

4672  
4673 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // For xy zooming, record the state of the zoom before zoom selection, then when

4674 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // the reset button is pressed, revert to this state

4675 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (zoomType === 'xy') {

4676 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { previousZoom = this.previousZoom;

4677 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (defined(newMin)) {

4678 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.previousZoom = [this.min, this.max];

4679 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (previousZoom) {

4680 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = previousZoom[0];

4681 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = previousZoom[1];

4682 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { delete this.previousZoom;

4683 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4684 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4685  
4686 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4687 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return ret !== undefined ? ret : proceed.call(this, newMin, newMax);

4688 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4689  
4690 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Initialize navigator for stock charts

4691 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Chart.prototype, 'init', function(proceed, options, callback) {

4692  
4693 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(this, 'beforeRender', function() {

4694 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var options = this.options;

4695 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (options.navigator.enabled || options.scrollbar.enabled) {

4696 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.scroller = this.navigator = new Navigator(this);

4697 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4698 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4699  
4700 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.call(this, options, callback);

4701  
4702 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4703  
4704 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4705 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * For stock charts, extend the Chart.setChartSize method so that we can set the final top position

4706 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * of the navigator once the height of the chart, including the legend, is determined. #367.

4707 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * We can't use Chart.getMargins, because labels offsets are not calculated yet.

4708 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4709 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Chart.prototype, 'setChartSize', function(proceed) {

4710  
4711 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var legend = this.legend,

4712 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator = this.navigator,

4713 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarHeight,

4714 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { legendOptions,

4715 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis,

4716 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yAxis;

4717  
4718 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.apply(this, [].slice.call(arguments, 1));

4719  
4720 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator) {

4721 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { legendOptions = legend.options;

4722 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis = navigator.xAxis;

4723 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yAxis = navigator.yAxis;

4724 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { scrollbarHeight = navigator.scrollbarHeight;

4725  
4726 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Compute the top position

4727 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.inverted) {

4728 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.left = navigator.opposite ?

4729 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.chartWidth - scrollbarHeight - navigator.height :

4730 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.spacing[3] + scrollbarHeight;

4731 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.top = this.plotTop + scrollbarHeight;

4732 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

4733 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.left = this.plotLeft + scrollbarHeight;

4734 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.top = navigator.navigatorOptions.top ||

4735 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.chartHeight - navigator.height - scrollbarHeight - this.spacing[2] -

4736 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (legendOptions.verticalAlign === 'bottom' && legendOptions.enabled && !legendOptions.floating ?

4737 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { legend.legendHeight + pick(legendOptions.margin, 10) : 0);

4738 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4739  
4740 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (xAxis && yAxis) { // false if navigator is disabled (#904)

4741  
4742 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.inverted) {

4743 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis.options.left = yAxis.options.left = navigator.left;

4744 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

4745 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis.options.top = yAxis.options.top = navigator.top;

4746 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4747  
4748 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { xAxis.setAxisSize();

4749 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { yAxis.setAxisSize();

4750 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4751 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4752 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4753  
4754 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Pick up badly formatted point options to addPoint

4755 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Series.prototype, 'addPoint', function(proceed, options, redraw, shift, animation) {

4756 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var turboThreshold = this.options.turboThreshold;

4757 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (turboThreshold && this.xData.length > turboThreshold && isObject(options, true) && this.chart.navigator) {

4758 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { error(20, true);

4759 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4760 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.call(this, options, redraw, shift, animation);

4761 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4762  
4763 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Handle adding new series

4764 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Chart.prototype, 'addSeries', function(proceed, options, redraw, animation) {

4765 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var series = proceed.call(this, options, false, animation);

4766 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.navigator) {

4767 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.navigator.setBaseSeries(); // Recompute which series should be shown in navigator, and add them

4768 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4769 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (pick(redraw, true)) {

4770 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.redraw();

4771 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4772 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return series;

4773 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4774  
4775 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Handle updating series

4776 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap(Series.prototype, 'update', function(proceed, newOptions, redraw) {

4777 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { proceed.call(this, newOptions, false);

4778 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.chart.navigator) {

4779 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.chart.navigator.setBaseSeries();

4780 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4781 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (pick(redraw, true)) {

4782 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.chart.redraw();

4783 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4784 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4785  
4786 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Chart.prototype.callbacks.push(function(chart) {

4787 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var extremes,

4788 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator = chart.navigator;

4789  
4790 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Initiate the navigator

4791 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (navigator) {

4792 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { extremes = chart.xAxis[0].getExtremes();

4793 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navigator.render(extremes.min, extremes.max);

4794 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4795 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4796  
4797 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /* ****************************************************************************

4798 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * End Navigator code *

4799 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *****************************************************************************/

4800  
4801 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }(Highcharts));

4802 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (function(H) {

4803 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4804 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * (c) 2010-2017 Torstein Honsi

4805 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *

4806 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * License: www.highcharts.com/license

4807 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4808 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var addEvent = H.addEvent,

4809 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Axis = H.Axis,

4810 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Chart = H.Chart,

4811 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { css = H.css,

4812 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { createElement = H.createElement,

4813 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dateFormat = H.dateFormat,

4814 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultOptions = H.defaultOptions,

4815 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { useUTC = defaultOptions.global.useUTC,

4816 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defined = H.defined,

4817 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroyObjectProperties = H.destroyObjectProperties,

4818 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { discardElement = H.discardElement,

4819 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each = H.each,

4820 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { extend = H.extend,

4821 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent = H.fireEvent,

4822 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { HCDate = H.Date,

4823 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isNumber = H.isNumber,

4824 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { merge = H.merge,

4825 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pick = H.pick,

4826 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pInt = H.pInt,

4827 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { splat = H.splat,

4828 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { wrap = H.wrap;

4829  
4830 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /* ****************************************************************************

4831 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Start Range Selector code *

4832 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { *****************************************************************************/

4833 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { extend(defaultOptions, {

4834 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector: {

4835 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // allButtonsEnabled: false,

4836 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // enabled: true,

4837 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // buttons: {Object}

4838 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // buttonSpacing: 0,

4839 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonTheme: {

4840 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'stroke-width': 0,

4841 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: 28,

4842 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: 18,

4843 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { padding: 2,

4844 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zIndex: 7 // #484, #852

4845 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4846 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: 35, // reserved space for buttons and input

4847 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputPosition: {

4848 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { align: 'right'

4849 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

4850 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // inputDateFormat: '%b %e, %Y',

4851 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // inputEditDateFormat: '%Y-%m-%d',

4852 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // inputEnabled: true,

4853 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // selected: undefined,

4854  
4855 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // inputStyle: {},

4856 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { labelStyle: {

4857 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { color: '#666666'

4858 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4859  
4860 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4861 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4862 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultOptions.lang = merge(defaultOptions.lang, {

4863 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelectorZoom: 'Zoom',

4864 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelectorFrom: 'From',

4865 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelectorTo: 'To'

4866 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4867  
4868 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4869 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * The range selector.

4870 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @class

4871 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} chart

4872 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4873 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { function RangeSelector(chart) {

4874  
4875 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Run RangeSelector

4876 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.init(chart);

4877 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4878  
4879 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { RangeSelector.prototype = {

4880 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

4881 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * The method to run when one of the buttons in the range selectors is clicked

4882 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} i The index of the button

4883 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} rangeOptions

4884 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Boolean} redraw

4885 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

4886 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { clickButton: function(i, redraw) {

4887 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var rangeSelector = this,

4888 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = rangeSelector.chart,

4889 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeOptions = rangeSelector.buttonOptions[i],

4890 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseAxis = chart.xAxis[0],

4891 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { unionExtremes = (chart.scroller && chart.scroller.getUnionExtremes()) || baseAxis || {},

4892 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMin = unionExtremes.dataMin,

4893 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMax = unionExtremes.dataMax,

4894 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin,

4895 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = baseAxis && Math.round(Math.min(baseAxis.max, pick(dataMax, baseAxis.max))), // #1568

4896 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type = rangeOptions.type,

4897 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxisOptions,

4898 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { range = rangeOptions._range,

4899 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeMin,

4900 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minSetting,

4901 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSetting,

4902 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ctx,

4903 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ytdExtremes,

4904 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataGrouping = rangeOptions.dataGrouping;

4905  
4906 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (dataMin === null || dataMax === null) { // chart has no data, base series is removed

4907 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return;

4908 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4909  
4910 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Set the fixed range before range is altered

4911 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.fixedRange = range;

4912  
4913 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Apply dataGrouping associated to button

4914 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (dataGrouping) {

4915 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.forcedDataGrouping = true;

4916 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Axis.prototype.setDataGrouping.call(baseAxis || {

4917 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart: this.chart

4918 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, dataGrouping, false);

4919 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4920  
4921 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Apply range

4922 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (type === 'month' || type === 'year') {

4923 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!baseAxis) {

4924 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // This is set to the user options and picked up later when the axis is instantiated

4925 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // so that we know the min and max.

4926 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { range = rangeOptions;

4927 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

4928 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ctx = {

4929 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { range: rangeOptions,

4930 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { max: newMax,

4931 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMin: dataMin,

4932 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMax: dataMax

4933 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

4934 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = baseAxis.minFromRange.call(ctx);

4935 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (isNumber(ctx.newMax)) {

4936 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = ctx.newMax;

4937 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4938 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4939  
4940 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Fixed times like minutes, hours, days

4941 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (range) {

4942 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = Math.max(newMax - range, dataMin);

4943 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = Math.min(newMin + range, dataMax);

4944  
4945 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (type === 'ytd') {

4946  
4947 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // On user clicks on the buttons, or a delayed action running from the beforeRender

4948 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // event (below), the baseAxis is defined.

4949 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (baseAxis) {

4950 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // When "ytd" is the pre-selected button for the initial view, its calculation

4951 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // is delayed and rerun in the beforeRender event (below). When the series

4952 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // are initialized, but before the chart is rendered, we have access to the xData

4953 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // array (#942).

4954 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (dataMax === undefined) {

4955 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMin = Number.MAX_VALUE;

4956 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMax = Number.MIN_VALUE;

4957 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(chart.series, function(series) {

4958 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var xData = series.xData; // reassign it to the last item

4959 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMin = Math.min(xData[0], dataMin);

4960 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMax = Math.max(xData[xData.length - 1], dataMax);

4961 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4962 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { redraw = false;

4963 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4964 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ytdExtremes = rangeSelector.getYTDExtremes(dataMax, dataMin, useUTC);

4965 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = rangeMin = ytdExtremes.min;

4966 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = ytdExtremes.max;

4967  
4968 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // "ytd" is pre-selected. We don't yet have access to processed point and extremes data

4969 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // (things like pointStart and pointInterval are missing), so we delay the process (#942)

4970 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

4971 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(chart, 'beforeRender', function() {

4972 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.clickButton(i);

4973 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4974 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return;

4975 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4976 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (type === 'all' && baseAxis) {

4977 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = dataMin;

4978 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = dataMax;

4979 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

4980 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.setSelected(i);

4981  
4982 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Update the chart

4983 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!baseAxis) {

4984 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Axis not yet instanciated. Temporarily set min and range

4985 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // options and remove them on chart load (#4317).

4986 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxisOptions = splat(chart.options.xAxis)[0];

4987 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSetting = baseXAxisOptions.range;

4988 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxisOptions.range = range;

4989 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minSetting = baseXAxisOptions.min;

4990 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxisOptions.min = rangeMin;

4991 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(chart, 'load', function resetMinAndRange() {

4992 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxisOptions.range = rangeSetting;

4993 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseXAxisOptions.min = minSetting;

4994 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

4995 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

4996 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Existing axis object. Set extremes after render time.

4997 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseAxis.setExtremes(

4998 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin,

4999 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax,

5000 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pick(redraw, 1),

5001 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { null, // auto animation

5002 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { {

5003 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'rangeSelectorButton',

5004 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelectorButton: rangeOptions

5005 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5006 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

5007 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5008 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5009  
5010 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5011 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Set the selected option. This method only sets the internal flag, it doesn't

5012 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * update the buttons or the actual zoomed range.

5013 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5014 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { setSelected: function(selected) {

5015 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.selected = this.options.selected = selected;

5016 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5017  
5018 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5019 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * The default buttons for pre-selecting time frames

5020 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5021 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { defaultButtons: [{

5022 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: 'month',

5023 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { count: 1,

5024 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: '1m'

5025 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, {

5026 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: 'month',

5027 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { count: 3,

5028 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: '3m'

5029 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, {

5030 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: 'month',

5031 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { count: 6,

5032 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: '6m'

5033 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, {

5034 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: 'ytd',

5035 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: 'YTD'

5036 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, {

5037 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: 'year',

5038 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { count: 1,

5039 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: '1y'

5040 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, {

5041 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: 'all',

5042 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: 'All'

5043 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }],

5044  
5045 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5046 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Initialize the range selector

5047 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5048 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { init: function(chart) {

5049 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var rangeSelector = this,

5050 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = chart.options.rangeSelector,

5051 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonOptions = options.buttons || [].concat(rangeSelector.defaultButtons),

5052 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { selectedOption = options.selected,

5053 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { blurInputs = function() {

5054 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var minInput = rangeSelector.minInput,

5055 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maxInput = rangeSelector.maxInput;

5056 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (minInput && minInput.blur) { //#3274 in some case blur is not defined

5057 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent(minInput, 'blur'); //#3274

5058 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5059 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (maxInput && maxInput.blur) { //#3274 in some case blur is not defined

5060 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fireEvent(maxInput, 'blur'); //#3274

5061 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5062 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

5063  
5064 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.chart = chart;

5065 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.options = options;

5066 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.buttons = [];

5067  
5068 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart.extraTopMargin = options.height;

5069 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.buttonOptions = buttonOptions;

5070  
5071 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.unMouseDown = addEvent(chart.container, 'mousedown', blurInputs);

5072 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.unResize = addEvent(chart, 'resize', blurInputs);

5073  
5074 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Extend the buttonOptions with actual range

5075 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(buttonOptions, rangeSelector.computeButtonRange);

5076  
5077 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // zoomed range based on a pre-selected button index

5078 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (selectedOption !== undefined && buttonOptions[selectedOption]) {

5079 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.clickButton(selectedOption, false);

5080 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5081  
5082  
5083 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(chart, 'load', function() {

5084 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If a data grouping is applied to the current button, release it when extremes change

5085 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { addEvent(chart.xAxis[0], 'setExtremes', function(e) {

5086 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (this.max - this.min !== chart.fixedRange && e.trigger !== 'rangeSelectorButton' &&

5087 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { e.trigger !== 'updatedData' && rangeSelector.forcedDataGrouping) {

5088 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.setDataGrouping(false, false);

5089 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5090 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5091 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5092 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5093  
5094 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5095 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Dynamically update the range selector buttons after a new range has been set

5096 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5097 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { updateButtonStates: function() {

5098 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var rangeSelector = this,

5099 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = this.chart,

5100 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { baseAxis = chart.xAxis[0],

5101 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { actualRange = Math.round(baseAxis.max - baseAxis.min),

5102 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { hasNoData = !baseAxis.hasVisibleSeries,

5103 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { day = 24 * 36e5, // A single day in milliseconds

5104 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { unionExtremes = (chart.scroller && chart.scroller.getUnionExtremes()) || baseAxis,

5105 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMin = unionExtremes.dataMin,

5106 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMax = unionExtremes.dataMax,

5107 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ytdExtremes = rangeSelector.getYTDExtremes(dataMax, dataMin, useUTC),

5108 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ytdMin = ytdExtremes.min,

5109 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ytdMax = ytdExtremes.max,

5110 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { selected = rangeSelector.selected,

5111 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { selectedExists = isNumber(selected),

5112 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { allButtonsEnabled = rangeSelector.options.allButtonsEnabled,

5113 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttons = rangeSelector.buttons;

5114  
5115 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(rangeSelector.buttonOptions, function(rangeOptions, i) {

5116 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var range = rangeOptions._range,

5117 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type = rangeOptions.type,

5118 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { count = rangeOptions.count || 1,

5119 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { button = buttons[i],

5120 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { state = 0,

5121 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { disable,

5122 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { select,

5123 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isSelected = i === selected,

5124 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Disable buttons where the range exceeds what is allowed in the current view

5125 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isTooGreatRange = range > dataMax - dataMin,

5126 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Disable buttons where the range is smaller than the minimum range

5127 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isTooSmallRange = range < baseAxis.minRange,

5128 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Do not select the YTD button if not explicitly told so

5129 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isYTDButNotSelected = false,

5130 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Disable the All button if we're already showing all

5131 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isAllButAlreadyShowingAll = false,

5132 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isSameRange = range === actualRange;

5133 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Months and years have a variable range so we check the extremes

5134 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (

5135 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (type === 'month' || type === 'year') &&

5136 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (actualRange >= {

5137 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { month: 28,

5138 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { year: 365

5139 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }[type] * day * count) &&

5140 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (actualRange <= {

5141 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { month: 31,

5142 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { year: 366

5143 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }[type] * day * count)

5144 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { ) {

5145 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isSameRange = true;

5146 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (type === 'ytd') {

5147 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isSameRange = (ytdMax - ytdMin) === actualRange;

5148 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isYTDButNotSelected = !isSelected;

5149 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (type === 'all') {

5150 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isSameRange = baseAxis.max - baseAxis.min >= dataMax - dataMin;

5151 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isAllButAlreadyShowingAll = !isSelected && selectedExists && isSameRange;

5152 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5153 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // The new zoom area happens to match the range for a button - mark it selected.

5154 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // This happens when scrolling across an ordinal gap. It can be seen in the intraday

5155 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // demos when selecting 1h and scroll across the night gap.

5156 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { disable = (!allButtonsEnabled &&

5157 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (

5158 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isTooGreatRange ||

5159 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isTooSmallRange ||

5160 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isAllButAlreadyShowingAll ||

5161 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { hasNoData

5162 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { )

5163 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

5164 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { select = (

5165 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (isSelected && isSameRange) ||

5166 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { (isSameRange && !selectedExists && !isYTDButNotSelected)

5167 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

5168  
5169 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (disable) {

5170 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { state = 3;

5171 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (select) {

5172 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { selectedExists = true; // Only one button can be selected

5173 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { state = 2;

5174 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5175  
5176 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If state has changed, update the button

5177 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (button.state !== state) {

5178 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { button.setState(state);

5179 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5180 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5181 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5182  
5183 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5184 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Compute and cache the range for an individual button

5185 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5186 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { computeButtonRange: function(rangeOptions) {

5187 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var type = rangeOptions.type,

5188 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { count = rangeOptions.count || 1,

5189  
5190 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // these time intervals have a fixed number of milliseconds, as opposed

5191 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // to month, ytd and year

5192 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fixedTimes = {

5193 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { millisecond: 1,

5194 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { second: 1000,

5195 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minute: 60 * 1000,

5196 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { hour: 3600 * 1000,

5197 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { day: 24 * 3600 * 1000,

5198 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { week: 7 * 24 * 3600 * 1000

5199 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

5200  
5201 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Store the range on the button object

5202 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (fixedTimes[type]) {

5203 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeOptions._range = fixedTimes[type] * count;

5204 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (type === 'month' || type === 'year') {

5205 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeOptions._range = {

5206 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { month: 30,

5207 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { year: 365

5208 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }[type] * 24 * 36e5 * count;

5209 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5210 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5211  
5212 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5213 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Set the internal and displayed value of a HTML input for the dates

5214 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {String} name

5215 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} time

5216 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5217 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { setInputValue: function(name, time) {

5218 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var options = this.chart.options.rangeSelector,

5219 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input = this[name + 'Input'];

5220  
5221 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (defined(time)) {

5222 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.previousValue = input.HCTime;

5223 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.HCTime = time;

5224 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5225  
5226 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.value = dateFormat(

5227 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options.inputEditDateFormat || '%Y-%m-%d',

5228 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.HCTime

5229 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

5230 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this[name + 'DateBox'].attr({

5231 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { text: dateFormat(options.inputDateFormat || '%b %e, %Y', input.HCTime)

5232 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5233 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5234  
5235 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { showInput: function(name) {

5236 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var inputGroup = this.inputGroup,

5237 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dateBox = this[name + 'DateBox'];

5238  
5239 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { css(this[name + 'Input'], {

5240 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left: (inputGroup.translateX + dateBox.x) + 'px',

5241 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { top: inputGroup.translateY + 'px',

5242 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: (dateBox.width - 2) + 'px',

5243 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: (dateBox.height - 2) + 'px',

5244 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { border: '2px solid silver'

5245 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5246 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5247  
5248 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { hideInput: function(name) {

5249 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { css(this[name + 'Input'], {

5250 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { border: 0,

5251 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: '1px',

5252 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: '1px'

5253 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5254 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.setInputValue(name);

5255 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5256  
5257 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5258 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Draw either the 'from' or the 'to' HTML input box of the range selector

5259 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Object} name

5260 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5261 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { drawInput: function(name) {

5262 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var rangeSelector = this,

5263 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = rangeSelector.chart,

5264 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartStyle = chart.renderer.style || {},

5265 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { renderer = chart.renderer,

5266 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = chart.options.rangeSelector,

5267 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { lang = defaultOptions.lang,

5268 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { div = rangeSelector.div,

5269 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isMin = name === 'min',

5270 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input,

5271 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { label,

5272 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dateBox,

5273 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputGroup = this.inputGroup;

5274  
5275 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { function updateExtremes() {

5276 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var inputValue = input.value,

5277 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value = (options.inputDateParser || Date.parse)(inputValue),

5278 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartAxis = chart.xAxis[0],

5279 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataAxis = chart.scroller && chart.scroller.xAxis ? chart.scroller.xAxis : chartAxis,

5280 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMin = dataAxis.dataMin,

5281 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dataMax = dataAxis.dataMax;

5282 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (value !== input.previousValue) {

5283 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.previousValue = value;

5284 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If the value isn't parsed directly to a value by the browser's Date.parse method,

5285 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // like YYYY-MM-DD in IE, try parsing it a different way

5286 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!isNumber(value)) {

5287 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value = inputValue.split('-');

5288 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value = Date.UTC(pInt(value[0]), pInt(value[1]) - 1, pInt(value[2]));

5289 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5290  
5291 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (isNumber(value)) {

5292  
5293 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Correct for timezone offset (#433)

5294 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!useUTC) {

5295 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value = value + new Date().getTimezoneOffset() * 60 * 1000;

5296 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5297  
5298 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Validate the extremes. If it goes beyound the data min or max, use the

5299 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // actual data extreme (#2438).

5300 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (isMin) {

5301 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (value > rangeSelector.maxInput.HCTime) {

5302 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value = undefined;

5303 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (value < dataMin) {

5304 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value = dataMin;

5305 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5306 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else {

5307 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (value < rangeSelector.minInput.HCTime) {

5308 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value = undefined;

5309 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (value > dataMax) {

5310 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { value = dataMax;

5311 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5312 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5313  
5314 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Set the extremes

5315 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (value !== undefined) {

5316 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartAxis.setExtremes(

5317 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isMin ? value : chartAxis.min,

5318 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { isMin ? chartAxis.max : value,

5319 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { undefined,

5320 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { undefined, {

5321 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { trigger: 'rangeSelectorInput'

5322 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5323 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { );

5324 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5325 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5326 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5327 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5328  
5329 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create the text label

5330 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this[name + 'Label'] = label = renderer.label(lang[isMin ? 'rangeSelectorFrom' : 'rangeSelectorTo'], this.inputGroup.offset)

5331 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-range-label')

5332 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

5333 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { padding: 2

5334 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

5335 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(inputGroup);

5336 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputGroup.offset += label.width + 5;

5337  
5338 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create an SVG label that shows updated date ranges and and records click events that

5339 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // bring in the HTML input.

5340 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this[name + 'DateBox'] = dateBox = renderer.label('', inputGroup.offset)

5341 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .addClass('highcharts-range-input')

5342 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

5343 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { padding: 2,

5344 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: options.inputBoxWidth || 90,

5345 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: options.inputBoxHeight || 17,

5346 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { stroke: options.inputBoxBorderColor || '#cccccc',

5347 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'stroke-width': 1,

5348 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'text-align': 'center'

5349 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

5350 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .on('click', function() {

5351 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.showInput(name); // If it is already focused, the onfocus event doesn't fire (#3713)

5352 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector[name + 'Input'].focus();

5353 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

5354 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(inputGroup);

5355 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputGroup.offset += dateBox.width + (isMin ? 10 : 0);

5356  
5357  
5358 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create the HTML input element. This is rendered as 1x1 pixel then set to the right size

5359 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // when focused.

5360 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this[name + 'Input'] = input = createElement('input', {

5361 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { name: name,

5362 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { className: 'highcharts-range-selector',

5363 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { type: 'text'

5364 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, {

5365 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { top: chart.plotTop + 'px' // prevent jump on focus in Firefox

5366 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, div);

5367  
5368  
5369 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Styles

5370 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { label.css(merge(chartStyle, options.labelStyle));

5371  
5372 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { dateBox.css(merge({

5373 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { color: '#333333'

5374 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, chartStyle, options.inputStyle));

5375  
5376 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { css(input, extend({

5377 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { position: 'absolute',

5378 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { border: 0,

5379 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: '1px', // Chrome needs a pixel to see it

5380 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: '1px',

5381 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { padding: 0,

5382 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { textAlign: 'center',

5383 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fontSize: chartStyle.fontSize,

5384 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { fontFamily: chartStyle.fontFamily,

5385 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { left: '-9em' // #4798

5386 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, options.inputStyle));

5387  
5388  
5389 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Blow up the input box

5390 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.onfocus = function() {

5391 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.showInput(name);

5392 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

5393 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Hide away the input box

5394 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.onblur = function() {

5395 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.hideInput(name);

5396 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

5397  
5398 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // handle changes in the input boxes

5399 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.onchange = updateExtremes;

5400  
5401 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { input.onkeypress = function(event) {

5402 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // IE does not fire onchange on enter

5403 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (event.keyCode === 13) {

5404 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { updateExtremes();

5405 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5406 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

5407 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5408  
5409 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5410 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Get the position of the range selector buttons and inputs. This can be overridden from outside for custom positioning.

5411 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5412 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { getPosition: function() {

5413 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var chart = this.chart,

5414 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = chart.options.rangeSelector,

5415 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonTop = pick((options.buttonPosition || {}).y, chart.plotTop - chart.axisOffset[0] - options.height);

5416  
5417 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return {

5418 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonTop: buttonTop,

5419 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputTop: buttonTop - 10

5420 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

5421 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5422 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5423 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Get the extremes of YTD.

5424 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Will choose dataMax if its value is lower than the current timestamp.

5425 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Will choose dataMin if its value is higher than the timestamp for

5426 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * the start of current year.

5427 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {number} dataMax

5428 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {number} dataMin

5429 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @return {object} Returns min and max for the YTD

5430 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5431 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { getYTDExtremes: function(dataMax, dataMin, useUTC) {

5432 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var min,

5433 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { now = new HCDate(dataMax),

5434 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { year = now[HCDate.hcGetFullYear](),

5435 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { startOfYear = useUTC ? HCDate.UTC(year, 0, 1) : +new HCDate(year, 0, 1); // eslint-disable-line new-cap

5436 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { min = Math.max(dataMin || 0, startOfYear);

5437 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { now = now.getTime();

5438 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return {

5439 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { max: Math.min(dataMax || now, now),

5440 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { min: min

5441 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

5442 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5443  
5444 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5445 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Render the range selector including the buttons and the inputs. The first time render

5446 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * is called, the elements are created and positioned. On subsequent calls, they are

5447 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * moved and updated.

5448 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} min X axis minimum

5449 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * @param {Number} max X axis maximum

5450 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5451 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { render: function(min, max) {

5452  
5453 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var rangeSelector = this,

5454 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chart = rangeSelector.chart,

5455 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { renderer = chart.renderer,

5456 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { container = chart.container,

5457 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartOptions = chart.options,

5458 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { navButtonOptions = chartOptions.exporting && chartOptions.exporting.enabled !== false &&

5459 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { chartOptions.navigation && chartOptions.navigation.buttonOptions,

5460 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { options = chartOptions.rangeSelector,

5461 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttons = rangeSelector.buttons,

5462 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { lang = defaultOptions.lang,

5463 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { div = rangeSelector.div,

5464 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputGroup = rangeSelector.inputGroup,

5465 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonTheme = options.buttonTheme,

5466 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonPosition = options.buttonPosition || {},

5467 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputEnabled = options.inputEnabled,

5468 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { states = buttonTheme && buttonTheme.states,

5469 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { plotLeft = chart.plotLeft,

5470 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonLeft,

5471 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { pos = this.getPosition(),

5472 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonGroup = rangeSelector.group,

5473 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonBBox,

5474 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rendered = rangeSelector.rendered;

5475  
5476 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (options.enabled === false) {

5477 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { return;

5478 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5479  
5480 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // create the elements

5481 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!rendered) {

5482  
5483 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.group = buttonGroup = renderer.g('range-selector-buttons').add();

5484  
5485 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.zoomText = renderer.text(lang.rangeSelectorZoom, pick(buttonPosition.x, plotLeft), 15)

5486 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .css(options.labelStyle)

5487 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(buttonGroup);

5488  
5489 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // button starting position

5490 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonLeft = pick(buttonPosition.x, plotLeft) + rangeSelector.zoomText.getBBox().width + 5;

5491  
5492 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { each(rangeSelector.buttonOptions, function(rangeOptions, i) {

5493 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttons[i] = renderer.button(

5494 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeOptions.text,

5495 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonLeft,

5496 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 0,

5497 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { function() {

5498 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.clickButton(i);

5499 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.isActive = true;

5500 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5501 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonTheme,

5502 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { states && states.hover,

5503 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { states && states.select,

5504 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { states && states.disabled

5505 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { )

5506 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .attr({

5507 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { 'text-align': 'center'

5508 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { })

5509 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add(buttonGroup);

5510  
5511 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // increase button position for the next button

5512 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonLeft += buttons[i].width + pick(options.buttonSpacing, 5);

5513 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5514  
5515 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // first create a wrapper outside the container in order to make

5516 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // the inputs work and make export correct

5517 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (inputEnabled !== false) {

5518 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.div = div = createElement('div', null, {

5519 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { position: 'relative',

5520 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { height: 0,

5521 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { zIndex: 1 // above container

5522 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5523  
5524 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { container.parentNode.insertBefore(div, container);

5525  
5526 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Create the group to keep the inputs

5527 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.inputGroup = inputGroup = renderer.g('input-group')

5528 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { .add();

5529 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputGroup.offset = 0;

5530  
5531 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.drawInput('min');

5532 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.drawInput('max');

5533 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5534 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5535 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.updateButtonStates();

5536  
5537 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Set or update the group position

5538 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonGroup[rendered ? 'animate' : 'attr']({

5539 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { translateY: pos.buttonTop

5540 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { });

5541  
5542 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (inputEnabled !== false) {

5543  
5544 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Update the alignment to the updated spacing box

5545 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputGroup.align(extend({

5546 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { y: pos.inputTop,

5547 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { width: inputGroup.offset,

5548 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Detect collision with the exporting buttons

5549 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { x: navButtonOptions && (pos.inputTop < (navButtonOptions.y || 0) + navButtonOptions.height - chart.spacing[0]) ?

5550 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { -40 : 0

5551 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, options.inputPosition), true, chart.spacingBox);

5552  
5553 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Hide if overlapping - inputEnabled is null or undefined

5554 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (!defined(inputEnabled)) {

5555 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { buttonBBox = buttonGroup.getBBox();

5556 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { inputGroup[inputGroup.alignAttr.translateX < buttonBBox.x + buttonBBox.width + 10 ? 'hide' : 'show']();

5557 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5558  
5559 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Set or reset the input values

5560 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.setInputValue('min', min);

5561 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.setInputValue('max', max);

5562 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5563  
5564 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rangeSelector.rendered = true;

5565 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5566  
5567 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5568 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Update the range selector with new options

5569 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5570 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { update: function(options) {

5571 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var chart = this.chart;

5572 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { merge(true, chart.options.rangeSelector, options);

5573 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.destroy();

5574 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { this.init(chart);

5575 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { },

5576  
5577 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5578 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Destroys allocated elements.

5579 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5580 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroy: function() {

5581 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var rSelector = this,

5582 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minInput = rSelector.minInput,

5583 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maxInput = rSelector.maxInput;

5584  
5585 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rSelector.unMouseDown();

5586 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rSelector.unResize();

5587  
5588 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Destroy elements in collections

5589 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { destroyObjectProperties(rSelector.buttons);

5590  
5591 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Clear input element events

5592 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (minInput) {

5593 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { minInput.onfocus = minInput.onblur = minInput.onchange = null;

5594 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5595 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (maxInput) {

5596 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { maxInput.onfocus = maxInput.onblur = maxInput.onchange = null;

5597 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5598  
5599 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // Destroy HTML and SVG elements

5600 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { H.objectEach(rSelector, function(val, key) {

5601 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (val && key !== 'chart') {

5602 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (val.destroy) { // SVGElement

5603 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { val.destroy();

5604 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { } else if (val.nodeType) { // HTML element

5605 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { discardElement(this[key]);

5606 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5607 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5608 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (val !== RangeSelector.prototype[key]) {

5609 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { rSelector[key] = null;

5610 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5611 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }, this);

5612 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { }

5613 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { };

5614  
5615 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { /**

5616 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { * Add logic to normalize the zoomed range in order to preserve the pressed state of range selector buttons

5617 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { */

5618 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { Axis.prototype.toFixedRange = function(pxMin, pxMax, fixedMin, fixedMax) {

5619 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { var fixedRange = this.chart && this.chart.fixedRange,

5620 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMin = pick(fixedMin, this.translate(pxMin, true, !this.horiz)),

5621 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { newMax = pick(fixedMax, this.translate(pxMax, true, !this.horiz)),

5622 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { changeRatio = fixedRange && (newMax - newMin) / fixedRange;

5623  
5624 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // If the difference between the fixed range and the actual requested range is

5625 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // too great, the user is dragging across an ordinal gap, and we need to release

5626 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { // the range selector button.

5627 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) { if (changeRatio > 0.7 && changeRatio < 1.3) {

5628 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { if (fixedMax) {

5629 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { newMin = newMax - fixedRange;

5630 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { } else {

5631 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { newMax = newMin + fixedRange;

5632 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { }

5633 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { }

5634 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { if (!isNumber(newMin)) { // #1195

5635 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { newMin = newMax = undefined;

5636 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { }

5637  
5638 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { return {

5639 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { min: newMin,

5640 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { max: newMax

5641 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { };

5642 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { };

5643  
5644 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { /**

5645 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { * Get the axis min value based on the range option and the current max. For

5646 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { * stock charts this is extended via the {@link RangeSelector} so that if the

5647 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { * selected range is a multiple of months or years, it is compensated for

5648 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { * various month lengths.

5649 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { *

5650 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { * @return {number} The new minimum value.

5651 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { */

5652 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { Axis.prototype.minFromRange = function() {

5653 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { var rangeOptions = this.range,

5654 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { type = rangeOptions.type,

5655 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { timeName = {

5656 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { month: 'Month',

5657 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { year: 'FullYear'

5658 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { }[type],

5659 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { min,

5660 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { max = this.max,

5661 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { dataMin,

5662 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { range,

5663 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { // Get the true range from a start date

5664 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { getTrueRange = function(base, count) {

5665 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { var date = new Date(base),

5666 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { basePeriod = date['get' + timeName]();

5667  
5668 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { date['set' + timeName](basePeriod + count);

5669  
5670 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { if (basePeriod === date['get' + timeName]()) {

5671 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { date.setDate(0); // #6537

5672 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { }

5673  
5674 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { return date.getTime() - base;

5675 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { };

5676  
5677 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { if (isNumber(rangeOptions)) {

5678 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { min = max - rangeOptions;

5679 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { range = rangeOptions;

5680 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { } else {

5681 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { min = max + getTrueRange(max, -rangeOptions.count);

5682  
5683 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { // Let the fixedRange reflect initial settings (#5930)

5684 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { if (this.chart) {

5685 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { this.chart.fixedRange = max - min;

5686 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { }

5687 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { }

5688  
5689 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { dataMin = pick(this.dataMin, Number.MIN_VALUE);

5690 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { if (!isNumber(min)) {

5691 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { min = dataMin;

5692 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { }

5693 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) { if (min <= dataMin) {

5694 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { min = dataMin;

5695 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (range === undefined) { // #4501

5696 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { range = getTrueRange(min, rangeOptions.count);

5697 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5698 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { this.newMax = Math.min(min + range, this.dataMax);

5699 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5700 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (!isNumber(max)) {

5701 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { min = undefined;

5702 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5703 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return min;

5704  
5705 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { };

5706  
5707 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Initialize scroller for stock charts

5708 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { wrap(Chart.prototype, 'init', function(proceed, options, callback) {

5709  
5710 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { addEvent(this, 'init', function() {

5711 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (this.options.rangeSelector.enabled) {

5712 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { this.rangeSelector = new RangeSelector(this);

5713 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5714 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

5715  
5716 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { proceed.call(this, options, callback);

5717  
5718 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

5719  
5720 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { Chart.prototype.callbacks.push(function(chart) {

5721 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var extremes,

5722 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { rangeSelector = chart.rangeSelector,

5723 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { unbindRender,

5724 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { unbindSetExtremes;

5725  
5726 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { function renderRangeSelector() {

5727 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { extremes = chart.xAxis[0].getExtremes();

5728 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (isNumber(extremes.min)) {

5729 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { rangeSelector.render(extremes.min, extremes.max);

5730 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5731 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5732  
5733 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (rangeSelector) {

5734 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // redraw the scroller on setExtremes

5735 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { unbindSetExtremes = addEvent(

5736 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { chart.xAxis[0],

5737 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { 'afterSetExtremes',

5738 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { function(e) {

5739 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { rangeSelector.render(e.min, e.max);

5740 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5741 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { );

5742  
5743 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // redraw the scroller chart resize

5744 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { unbindRender = addEvent(chart, 'redraw', renderRangeSelector);

5745  
5746 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // do it now

5747 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { renderRangeSelector();

5748 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5749  
5750 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Remove resize/afterSetExtremes at chart destroy

5751 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { addEvent(chart, 'destroy', function destroyEvents() {

5752 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (rangeSelector) {

5753 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { unbindRender();

5754 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { unbindSetExtremes();

5755 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5756 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

5757 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

5758  
5759  
5760 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { H.RangeSelector = RangeSelector;

5761  
5762 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { /* ****************************************************************************

5763 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * End Range Selector code *

5764 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { *****************************************************************************/

5765  
5766 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }(Highcharts));

5767 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { (function(H) {

5768 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { /**

5769 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * (c) 2010-2017 Torstein Honsi

5770 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { *

5771 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * License: www.highcharts.com/license

5772 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { */

5773 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var arrayMax = H.arrayMax,

5774 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { arrayMin = H.arrayMin,

5775 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { Axis = H.Axis,

5776 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { Chart = H.Chart,

5777 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { defined = H.defined,

5778 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { each = H.each,

5779 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { extend = H.extend,

5780 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { format = H.format,

5781 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { grep = H.grep,

5782 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { inArray = H.inArray,

5783 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { isNumber = H.isNumber,

5784 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { isString = H.isString,

5785 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { map = H.map,

5786 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { merge = H.merge,

5787 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { pick = H.pick,

5788 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { Point = H.Point,

5789 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { Renderer = H.Renderer,

5790 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { Series = H.Series,

5791 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { splat = H.splat,

5792 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { SVGRenderer = H.SVGRenderer,

5793 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { VMLRenderer = H.VMLRenderer,

5794 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { wrap = H.wrap,

5795  
5796  
5797 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { seriesProto = Series.prototype,

5798 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { seriesInit = seriesProto.init,

5799 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { seriesProcessData = seriesProto.processData,

5800 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { pointTooltipFormatter = Point.prototype.tooltipFormatter;

5801  
5802 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { /**

5803 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * Factory function for creating new stock charts. Creates a new {@link Chart|

5804 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * Chart} object with different default options than the basic Chart.

5805 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { *

5806 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * @function #stockChart

5807 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * @memberOf Highcharts

5808 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { *

5809 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * @param {String|HTMLDOMElement} renderTo

5810 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * The DOM element to render to, or its id.

5811 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * @param {Options} options

5812 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * The chart options structure as described in the {@link

5813 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * https://api.highcharts.com/highstock|options reference}.

5814 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * @param {Function} callback

5815 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * A function to execute when the chart object is finished loading and

5816 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * rendering. In most cases the chart is built in one thread, but in

5817 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * Internet Explorer version 8 or less the chart is sometimes initiated

5818 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * before the document is ready, and in these cases the chart object

5819 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * will not be finished synchronously. As a consequence, code that

5820 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * relies on the newly built Chart object should always run in the

5821 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * callback. Defining a {@link https://api.highcharts.com/highstock/chart.events.load|

5822 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * chart.event.load} handler is equivalent.

5823 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { *

5824 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * @return {Chart}

5825 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * The chart object.

5826 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { *

5827 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * @example

5828 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * var chart = Highcharts.stockChart('container', {

5829 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * series: [{

5830 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * data: [1, 2, 3, 4, 5, 6, 7, 8, 9],

5831 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * pointInterval: 24 * 60 * 60 * 1000

5832 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * }]

5833 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * });

5834 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { */

5835 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { H.StockChart = H.stockChart = function(a, b, c) {

5836 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var hasRenderToArg = isString(a) || a.nodeName,

5837 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options = arguments[hasRenderToArg ? 1 : 0],

5838 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { seriesOptions = options.series, // to increase performance, don't merge the data

5839 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { defaultOptions = H.getOptions(),

5840 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { opposite,

5841  
5842 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Always disable startOnTick:true on the main axis when the navigator

5843 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // is enabled (#1090)

5844 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { navigatorEnabled = pick(

5845 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options.navigator && options.navigator.enabled,

5846 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { defaultOptions.navigator.enabled,

5847 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { true

5848 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { ),

5849 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { disableStartOnTick = navigatorEnabled ? {

5850 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { startOnTick: false,

5851 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { endOnTick: false

5852 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } : null,

5853  
5854 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { lineOptions = {

5855  
5856 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { marker: {

5857 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { enabled: false,

5858 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { radius: 2

5859 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5860 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // gapSize: 0

5861 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5862 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { columnOptions = {

5863 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { shadow: false,

5864 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { borderWidth: 0

5865 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { };

5866  
5867 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // apply X axis options to both single and multi y axes

5868 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options.xAxis = map(splat(options.xAxis || {}), function(xAxisOptions) {

5869 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return merge({ // defaults

5870 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { minPadding: 0,

5871 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { maxPadding: 0,

5872 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { ordinal: true,

5873 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { title: {

5874 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { text: null

5875 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5876 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { labels: {

5877 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { overflow: 'justify'

5878 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5879 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { showLastLabel: true

5880 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5881 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { defaultOptions.xAxis, // #3802

5882 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { xAxisOptions, // user options

5883 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { { // forced options

5884 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { type: 'datetime',

5885 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { categories: null

5886 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5887 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { disableStartOnTick

5888 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { );

5889 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

5890  
5891 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // apply Y axis options to both single and multi y axes

5892 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options.yAxis = map(splat(options.yAxis || {}), function(yAxisOptions) {

5893 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { opposite = pick(yAxisOptions.opposite, true);

5894 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return merge({ // defaults

5895 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { labels: {

5896 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { y: -2

5897 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5898 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { opposite: opposite,

5899 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { showLastLabel: false,

5900 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { title: {

5901 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { text: null

5902 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5903 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5904 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { defaultOptions.yAxis, // #3802

5905 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { yAxisOptions // user options

5906 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { );

5907 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

5908  
5909 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options.series = null;

5910  
5911 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options = merge({

5912 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { chart: {

5913 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { panning: true,

5914 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { pinchType: 'x'

5915 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5916 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { navigator: {

5917 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { enabled: navigatorEnabled

5918 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5919 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { scrollbar: {

5920 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // #4988 - check if setOptions was called

5921 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { enabled: pick(defaultOptions.scrollbar.enabled, true)

5922 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5923 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { rangeSelector: {

5924 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // #4988 - check if setOptions was called

5925 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { enabled: pick(defaultOptions.rangeSelector.enabled, true)

5926 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5927 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { title: {

5928 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { text: null

5929 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5930 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { tooltip: {

5931 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { shared: true,

5932 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { crosshairs: true

5933 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5934 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { legend: {

5935 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { enabled: false

5936 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5937  
5938 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { plotOptions: {

5939 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { line: lineOptions,

5940 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { spline: lineOptions,

5941 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { area: lineOptions,

5942 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { areaspline: lineOptions,

5943 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { arearange: lineOptions,

5944 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { areasplinerange: lineOptions,

5945 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { column: columnOptions,

5946 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { columnrange: columnOptions,

5947 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { candlestick: columnOptions,

5948 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { ohlc: columnOptions

5949 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5950  
5951 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { },

5952  
5953 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options, // user's options

5954  
5955 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { { // forced options

5956 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { isStock: true // internal flag

5957 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5958 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { );

5959  
5960 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options.series = seriesOptions;

5961  
5962 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return hasRenderToArg ?

5963 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { new Chart(a, options, c) :

5964 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { new Chart(options, b);

5965 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { };

5966  
5967 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Override the automatic label alignment so that the first Y axis' labels

5968 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // are drawn on top of the grid line, and subsequent axes are drawn outside

5969 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { wrap(Axis.prototype, 'autoLabelAlign', function(proceed) {

5970 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var chart = this.chart,

5971 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options = this.options,

5972 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { panes = chart._labelPanes = chart._labelPanes || {},

5973 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { key,

5974 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { labelOptions = this.options.labels;

5975 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (this.chart.options.isStock && this.coll === 'yAxis') {

5976 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { key = options.top + ',' + options.height;

5977 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (!panes[key] && labelOptions.enabled) { // do it only for the first Y axis of each pane

5978 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (labelOptions.x === 15) { // default

5979 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { labelOptions.x = 0;

5980 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5981 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (labelOptions.align === undefined) {

5982 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { labelOptions.align = 'right';

5983 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5984 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { panes[key] = this;

5985 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return 'right';

5986 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5987 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5988 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return proceed.call(this, [].slice.call(arguments, 1));

5989 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

5990  
5991 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Clear axis from label panes (#6071)

5992 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { wrap(Axis.prototype, 'destroy', function(proceed) {

5993 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var chart = this.chart,

5994 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { key = this.options && (this.options.top + ',' + this.options.height);

5995  
5996 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (key && chart._labelPanes && chart._labelPanes[key] === this) {

5997 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { delete chart._labelPanes[key];

5998 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

5999  
6000 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return proceed.call(this, Array.prototype.slice.call(arguments, 1));

6001 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6002  
6003 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Override getPlotLinePath to allow for multipane charts

6004 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { wrap(Axis.prototype, 'getPlotLinePath', function(proceed, value, lineWidth, old, force, translatedValue) {

6005 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var axis = this,

6006 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { series = (this.isLinked && !this.series ? this.linkedParent.series : this.series),

6007 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { chart = axis.chart,

6008 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { renderer = chart.renderer,

6009 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { axisLeft = axis.left,

6010 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { axisTop = axis.top,

6011 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { x1,

6012 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { y1,

6013 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { x2,

6014 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { y2,

6015 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { result = [],

6016 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { axes = [], //#3416 need a default array

6017 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { axes2,

6018 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { uniqueAxes,

6019 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { transVal;

6020  
6021 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { /**

6022 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { * Return the other axis based on either the axis option or on related series.

6023 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { */

6024 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { function getAxis(coll) {

6025 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var otherColl = coll === 'xAxis' ? 'yAxis' : 'xAxis',

6026 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { opt = axis.options[otherColl];

6027  
6028 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Other axis indexed by number

6029 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (isNumber(opt)) {

6030 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return [chart[otherColl][opt]];

6031 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6032  
6033 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Other axis indexed by id (like navigator)

6034 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (isString(opt)) {

6035 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return [chart.get(opt)];

6036 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6037  
6038 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Auto detect based on existing series

6039 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return map(series, function(s) {

6040 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return s[otherColl];

6041 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6042 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6043  
6044 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Ignore in case of colorAxis or zAxis. #3360, #3524, #6720

6045 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (axis.coll !== 'xAxis' && axis.coll !== 'yAxis') {

6046 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return proceed.apply(this, [].slice.call(arguments, 1));

6047 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6048  
6049 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Get the related axes based on series

6050 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { axes = getAxis(axis.coll);

6051  
6052 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Get the related axes based options.*Axis setting #2810

6053 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { axes2 = (axis.isXAxis ? chart.yAxis : chart.xAxis);

6054 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { each(axes2, function(A) {

6055 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (defined(A.options.id) ? A.options.id.indexOf('navigator') === -1 : true) {

6056 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var a = (A.isXAxis ? 'yAxis' : 'xAxis'),

6057 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { rax = (defined(A.options[a]) ? chart[a][A.options[a]] : chart[a][0]);

6058  
6059 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (axis === rax) {

6060 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { axes.push(A);

6061 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6062 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6063 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6064  
6065  
6066 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Remove duplicates in the axes array. If there are no axes in the axes array,

6067 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // we are adding an axis without data, so we need to populate this with grid

6068 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // lines (#2796).

6069 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { uniqueAxes = axes.length ? [] : [axis.isXAxis ? chart.yAxis[0] : chart.xAxis[0]]; //#3742

6070 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { each(axes, function(axis2) {

6071 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (

6072 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { inArray(axis2, uniqueAxes) === -1 &&

6073 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Do not draw on axis which overlap completely. #5424

6074 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { !H.find(uniqueAxes, function(unique) {

6075 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return unique.pos === axis2.pos && unique.len && axis2.len;

6076 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { })

6077 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { ) {

6078 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { uniqueAxes.push(axis2);

6079 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6080 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6081  
6082 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { transVal = pick(translatedValue, axis.translate(value, null, null, old));

6083 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (isNumber(transVal)) {

6084 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (axis.horiz) {

6085 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { each(uniqueAxes, function(axis2) {

6086 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var skip;

6087  
6088 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { y1 = axis2.pos;

6089 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { y2 = y1 + axis2.len;

6090 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { x1 = x2 = Math.round(transVal + axis.transB);

6091  
6092 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (x1 < axisLeft || x1 > axisLeft + axis.width) { // outside plot area

6093 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (force) {

6094 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { x1 = x2 = Math.min(Math.max(axisLeft, x1), axisLeft + axis.width);

6095 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } else {

6096 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { skip = true;

6097 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6098 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6099 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (!skip) {

6100 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { result.push('M', x1, y1, 'L', x2, y2);

6101 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6102 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6103 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } else {

6104 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { each(uniqueAxes, function(axis2) {

6105 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var skip;

6106  
6107 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { x1 = axis2.pos;

6108 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { x2 = x1 + axis2.len;

6109 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { y1 = y2 = Math.round(axisTop + axis.height - transVal);

6110  
6111 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (y1 < axisTop || y1 > axisTop + axis.height) { // outside plot area

6112 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (force) {

6113 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { y1 = y2 = Math.min(Math.max(axisTop, y1), axis.top + axis.height);

6114 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } else {

6115 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { skip = true;

6116 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6117 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6118 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (!skip) {

6119 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { result.push('M', x1, y1, 'L', x2, y2);

6120 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6121 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6122 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6123 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6124 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return result.length > 0 ?

6125 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { renderer.crispPolyLine(result, lineWidth || 1) :

6126 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { null; //#3557 getPlotLinePath in regular Highcharts also returns null

6127 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6128  
6129 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Override getPlotBandPath to allow for multipane charts

6130 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { Axis.prototype.getPlotBandPath = function(from, to) {

6131 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var toPath = this.getPlotLinePath(to, null, null, true),

6132 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { path = this.getPlotLinePath(from, null, null, true),

6133 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { result = [],

6134 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { i;

6135  
6136 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (path && toPath) {

6137 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (path.toString() === toPath.toString()) {

6138 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // #6166

6139 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { result = path;

6140 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { result.flat = true;

6141 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } else {

6142 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Go over each subpath

6143 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { for (i = 0; i < path.length; i += 6) {

6144 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { result.push(

6145 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { 'M', path[i + 1], path[i + 2],

6146 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { 'L', path[i + 4], path[i + 5],

6147 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { toPath[i + 4], toPath[i + 5],

6148 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { toPath[i + 1], toPath[i + 2],

6149 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { 'z'

6150 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { );

6151 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6152 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6153 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } else { // outside the axis area

6154 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { result = null;

6155 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6156  
6157 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return result;

6158 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { };

6159  
6160 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Function to crisp a line with multiple segments

6161 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { SVGRenderer.prototype.crispPolyLine = function(points, width) {

6162 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // points format: ['M', 0, 0, 'L', 100, 0]

6163 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // normalize to a crisp line

6164 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var i;

6165 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { for (i = 0; i < points.length; i = i + 6) {

6166 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (points[i + 1] === points[i + 4]) {

6167 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Substract due to #1129. Now bottom and left axis gridlines behave the same.

6168 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { points[i + 1] = points[i + 4] = Math.round(points[i + 1]) - (width % 2 / 2);

6169 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6170 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (points[i + 2] === points[i + 5]) {

6171 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { points[i + 2] = points[i + 5] = Math.round(points[i + 2]) + (width % 2 / 2);

6172 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6173 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6174 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return points;

6175 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { };

6176  
6177 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (Renderer === VMLRenderer) {

6178 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { VMLRenderer.prototype.crispPolyLine = SVGRenderer.prototype.crispPolyLine;

6179 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6180  
6181  
6182 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Wrapper to hide the label

6183 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { wrap(Axis.prototype, 'hideCrosshair', function(proceed, i) {

6184  
6185 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { proceed.call(this, i);

6186  
6187 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (this.crossLabel) {

6188 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { this.crossLabel = this.crossLabel.hide();

6189 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6190 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6191  
6192 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Wrapper to draw the label

6193 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { wrap(Axis.prototype, 'drawCrosshair', function(proceed, e, point) {

6194  
6195 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Draw the crosshair

6196 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { proceed.call(this, e, point);

6197  
6198 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Check if the label has to be drawn

6199 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (!defined(this.crosshair.label) || !this.crosshair.label.enabled || !this.cross) {

6200 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { return;

6201 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6202  
6203 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { var chart = this.chart,

6204 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { options = this.options.crosshair.label, // the label's options

6205 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { horiz = this.horiz, // axis orientation

6206 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { opposite = this.opposite, // axis position

6207 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { left = this.left, // left position

6208 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { top = this.top, // top position

6209 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { crossLabel = this.crossLabel, // reference to the svgElement

6210 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { posx,

6211 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { posy,

6212 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { crossBox,

6213 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { formatOption = options.format,

6214 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { formatFormat = '',

6215 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { limit,

6216 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { align,

6217 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { tickInside = this.options.tickPosition === 'inside',

6218 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { snap = this.crosshair.snap !== false,

6219 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { value,

6220 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { offset = 0;

6221  
6222 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Use last available event (#5287)

6223 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (!e) {

6224 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { e = this.cross && this.cross.e;

6225 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6226  
6227 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { align = (horiz ? 'center' : opposite ?

6228 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { (this.labelAlign === 'right' ? 'right' : 'left') :

6229 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { (this.labelAlign === 'left' ? 'left' : 'center'));

6230  
6231 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // If the label does not exist yet, create it.

6232 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (!crossLabel) {

6233 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { crossLabel = this.crossLabel = chart.renderer.label(null, null, null, options.shape || 'callout')

6234 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { .addClass('highcharts-crosshair-label' +

6235 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { (this.series[0] && ' highcharts-color-' + this.series[0].colorIndex))

6236 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { .attr({

6237 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { align: options.align || align,

6238 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { padding: pick(options.padding, 8),

6239 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { r: pick(options.borderRadius, 3),

6240 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { zIndex: 2

6241 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { })

6242 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { .add(this.labelGroup);

6243  
6244  
6245 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Presentational

6246 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { crossLabel

6247 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { .attr({

6248 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { fill: options.backgroundColor ||

6249 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { (this.series[0] && this.series[0].color) || '#666666',

6250 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { stroke: options.borderColor || '',

6251 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { 'stroke-width': options.borderWidth || 0

6252 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { })

6253 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { .css(extend({

6254 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { color: '#ffffff',

6255 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { fontWeight: 'normal',

6256 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { fontSize: '11px',

6257 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { textAlign: 'center'

6258 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }, options.style));

6259  
6260 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6261  
6262 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (horiz) {

6263 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { posx = snap ? point.plotX + left : e.chartX;

6264 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { posy = top + (opposite ? 0 : this.height);

6265 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } else {

6266 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { posx = opposite ? this.width + left : 0;

6267 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { posy = snap ? point.plotY + top : e.chartY;

6268 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6269  
6270 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (!formatOption && !options.formatter) {

6271 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (this.isDatetimeAxis) {

6272 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { formatFormat = '%b %d, %Y';

6273 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6274 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { formatOption = '{value' + (formatFormat ? ':' + formatFormat : '') + '}';

6275 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6276  
6277 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // Show the label

6278 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { value = snap ? point[this.isXAxis ? 'x' : 'y'] : this.toValue(horiz ? e.chartX : e.chartY);

6279 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { crossLabel.attr({

6280 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { text: formatOption ? format(formatOption, {

6281 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { value: value

6282 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }) : options.formatter.call(this, value),

6283 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { x: posx,

6284 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { y: posy,

6285 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { visibility: 'visible'

6286 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { });

6287  
6288 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { crossBox = crossLabel.getBBox();

6289  
6290 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // now it is placed we can correct its position

6291 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (horiz) {

6292 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if ((tickInside && !opposite) || (!tickInside && opposite)) {

6293 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { posy = crossLabel.y - crossBox.height;

6294 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6295 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } else {

6296 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { posy = crossLabel.y - (crossBox.height / 2);

6297 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6298  
6299 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // check the edges

6300 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (horiz) {

6301 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { limit = {

6302 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { left: left - crossBox.x,

6303 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { right: left + this.width - crossBox.x

6304 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { };

6305 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { } else {

6306 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { limit = {

6307 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { left: this.labelAlign === 'left' ? left : 0,

6308 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { right: this.labelAlign === 'right' ? left + this.width : chart.chartWidth

6309 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { };

6310 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { }

6311  
6312 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { // left edge

6313 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) { if (crossLabel.translateX < limit.left) {

6314 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { offset = limit.left - crossLabel.translateX;

6315 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { }

6316 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // right edge

6317 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { if (crossLabel.translateX + crossBox.width >= limit.right) {

6318 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { offset = -(crossLabel.translateX + crossBox.width - limit.right);

6319 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { }

6320  
6321 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // show the crosslabel

6322 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { crossLabel.attr({

6323 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { x: posx + offset,

6324 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { y: posy,

6325 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // First set x and y, then anchorX and anchorY, when box is actually calculated, #5702

6326 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { anchorX: horiz ? posx : (this.opposite ? 0 : chart.chartWidth),

6327 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { anchorY: horiz ? (this.opposite ? chart.chartHeight : 0) : posy + crossBox.height / 2

6328 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { });

6329 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { });

6330  
6331 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { /* ****************************************************************************

6332 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * Start value compare logic *

6333 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { *****************************************************************************/

6334  
6335 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { /**

6336 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * Extend series.init by adding a method to modify the y value used for plotting

6337 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * on the y axis. This method is called both from the axis when finding dataMin

6338 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * and dataMax, and from the series.translate method.

6339 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { */

6340 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { seriesProto.init = function() {

6341  
6342 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // Call base method

6343 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { seriesInit.apply(this, arguments);

6344  
6345 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // Set comparison mode

6346 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { this.setCompare(this.options.compare);

6347 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { };

6348  
6349 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { /**

6350 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * Highstock only. Set the {@link

6351 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * http://api.highcharts.com/highstock/plotOptions.series.compare|

6352 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * compare} mode of the series after render time. In most cases it is more

6353 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * useful running {@link Axis#setCompare} on the X axis to update all its

6354 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * series.

6355 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { *

6356 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * @function setCompare

6357 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * @memberOf Series.prototype

6358 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { *

6359 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * @param {String} compare

6360 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * Can be one of `null`, `"percent"` or `"value"`.

6361 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { */

6362 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { seriesProto.setCompare = function(compare) {

6363  
6364 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // Set or unset the modifyValue method

6365 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { this.modifyValue = (compare === 'value' || compare === 'percent') ? function(value, point) {

6366 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { var compareValue = this.compareValue;

6367  
6368 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { if (value !== undefined && compareValue !== undefined) { // #2601, #5814

6369  
6370 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // Get the modified value

6371 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { if (compare === 'value') {

6372 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { value -= compareValue;

6373  
6374 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // Compare percent

6375 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { } else {

6376 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { value = 100 * (value / compareValue) -

6377 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { (this.options.compareBase === 100 ? 0 : 100);

6378 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { }

6379  
6380 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // record for tooltip etc.

6381 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { if (point) {

6382 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { point.change = value;

6383 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { }

6384  
6385 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { return value;

6386 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { }

6387 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { } : null;

6388  
6389 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // Survive to export, #5485

6390 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { this.userOptions.compare = compare;

6391  
6392 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // Mark dirty

6393 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { if (this.chart.hasRendered) {

6394 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { this.isDirty = true;

6395 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { }

6396  
6397 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { };

6398  
6399 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { /**

6400 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * Extend series.processData by finding the first y value in the plot area,

6401 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { * used for comparing the following values

6402 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { */

6403 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { seriesProto.processData = function() {

6404 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { var series = this,

6405 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { i,

6406 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { keyIndex = -1,

6407 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { processedXData,

6408 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { processedYData,

6409 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { length,

6410 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { compareValue;

6411  
6412 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // call base method

6413 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { seriesProcessData.apply(this, arguments);

6414  
6415 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { if (series.xAxis && series.processedYData) { // not pies

6416  
6417 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // local variables

6418 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { processedXData = series.processedXData;

6419 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { processedYData = series.processedYData;

6420 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { length = processedYData.length;

6421  
6422 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // For series with more than one value (range, OHLC etc), compare against

6423 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // close or the pointValKey (#4922, #3112)

6424 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { if (series.pointArrayMap) {

6425 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // Use close if present (#3112)

6426 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { keyIndex = inArray('close', series.pointArrayMap);

6427 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { if (keyIndex === -1) {

6428 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { keyIndex = inArray(series.pointValKey || 'y', series.pointArrayMap);

6429 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { }

6430 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { }

6431  
6432 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { // find the first value for comparison

6433 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) { for (i = 0; i < length - 1; i++) {

6434 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { compareValue = processedYData[i] && keyIndex > -1 ?

6435 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { processedYData[i][keyIndex] :

6436 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { processedYData[i];

6437 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { if (isNumber(compareValue) && processedXData[i + 1] >= series.xAxis.min && compareValue !== 0) {

6438 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { series.compareValue = compareValue;

6439 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { break;

6440 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6441 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6442 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6443 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { };

6444  
6445 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { /**

6446 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * Modify series extremes

6447 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { */

6448 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { wrap(seriesProto, 'getExtremes', function(proceed) {

6449 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { var extremes;

6450  
6451 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { proceed.apply(this, [].slice.call(arguments, 1));

6452  
6453 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { if (this.modifyValue) {

6454 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { extremes = [this.modifyValue(this.dataMin), this.modifyValue(this.dataMax)];

6455 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.dataMin = arrayMin(extremes);

6456 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.dataMax = arrayMax(extremes);

6457 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6458 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { });

6459  
6460 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { /**

6461 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * Highstock only. Set the compare mode on all series belonging to an Y axis

6462 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * after render time.

6463 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { *

6464 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * @param {String} compare

6465 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * The compare mode. Can be one of `null`, `"value"` or `"percent"`.

6466 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * @param {Boolean} [redraw=true]

6467 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * Whether to redraw the chart or to wait for a later call to {@link

6468 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * Chart#redraw},

6469 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { *

6470 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * @function setCompare

6471 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * @memberOf Axis.prototype

6472 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { *

6473 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * @see {@link https://api.highcharts.com/highstock/series.plotOptions.compare|

6474 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * series.plotOptions.compare}

6475 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { *

6476 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * @sample stock/members/axis-setcompare/

6477 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * Set compoare

6478 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { */

6479 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { Axis.prototype.setCompare = function(compare, redraw) {

6480 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { if (!this.isXAxis) {

6481 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { each(this.series, function(series) {

6482 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { series.setCompare(compare);

6483 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { });

6484 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { if (pick(redraw, true)) {

6485 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.chart.redraw();

6486 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6487 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6488 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { };

6489  
6490 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { /**

6491 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * Extend the tooltip formatter by adding support for the point.change variable

6492 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * as well as the changeDecimals option

6493 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { */

6494 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { Point.prototype.tooltipFormatter = function(pointFormat) {

6495 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { var point = this;

6496  
6497 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { pointFormat = pointFormat.replace(

6498 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { '{point.change}',

6499 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { (point.change > 0 ? '+' : '') +

6500 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { H.numberFormat(point.change, pick(point.series.tooltipOptions.changeDecimals, 2))

6501 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { );

6502  
6503 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { return pointTooltipFormatter.apply(this, [pointFormat]);

6504 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { };

6505  
6506 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { /* ****************************************************************************

6507 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * End value compare logic *

6508 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { *****************************************************************************/

6509  
6510  
6511 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { /**

6512 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * Extend the Series prototype to create a separate series clip box. This is

6513 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * related to using multiple panes, and a future pane logic should incorporate

6514 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { * this feature (#2754).

6515 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { */

6516 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { wrap(Series.prototype, 'render', function(proceed) {

6517 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // Only do this on not 3d (#2939, #5904) nor polar (#6057) charts, and only

6518 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // if the series type handles clipping in the animate method (#2975).

6519 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { if (!(this.chart.is3d && this.chart.is3d()) &&

6520 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { !this.chart.polar &&

6521 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.xAxis &&

6522 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { !this.xAxis.isRadial // Gauge, #6192

6523 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { ) {

6524  
6525 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // First render, initial clip box

6526 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { if (!this.clipBox && this.animate) {

6527 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.clipBox = merge(this.chart.clipBox);

6528 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.clipBox.width = this.xAxis.len;

6529 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.clipBox.height = this.yAxis.len;

6530  
6531 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // On redrawing, resizing etc, update the clip rectangle

6532 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { } else if (this.chart[this.sharedClipKey]) {

6533 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.chart[this.sharedClipKey].attr({

6534 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { width: this.xAxis.len,

6535 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { height: this.yAxis.len

6536 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { });

6537 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // #3111

6538 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { } else if (this.clipBox) {

6539 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.clipBox.width = this.xAxis.len;

6540 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.clipBox.height = this.yAxis.len;

6541 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6542 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6543 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { proceed.call(this);

6544 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { });

6545  
6546 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { wrap(Chart.prototype, 'getSelectedPoints', function(proceed) {

6547 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { var points = proceed.call(this);

6548  
6549 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { each(this.series, function(serie) {

6550 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // series.points - for grouped points (#6445)

6551 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { if (serie.hasGroupedData) {

6552 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { points = points.concat(grep(serie.points || [], function(point) {

6553 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { return point.selected;

6554 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }));

6555 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6556 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { });

6557 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { return points;

6558 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { });

6559  
6560 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { wrap(Chart.prototype, 'update', function(proceed, options) {

6561 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // Use case: enabling scrollbar from a disabled state.

6562 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // Scrollbar needs to be initialized from a controller, Navigator in this

6563 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { // case (#6615)

6564 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { if ('scrollbar' in options && this.navigator) {

6565 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { merge(true, this.options.scrollbar, options.scrollbar);

6566 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { this.navigator.update({}, false);

6567 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { delete options.scrollbar;

6568 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }

6569  
6570 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { return proceed.apply(this, Array.prototype.slice.call(arguments, 1));

6571 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { });

6572  
6573 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) { }(Highcharts));

6574 < tickPixelIntervalOption * 0.6) {< tickPixelIntervalOption * 0.8 &&< medianDistance * 0.8)) {< 0) { /< 0) {<= Math.max(dataMax, max)) {< brk.from && y >< brk.from)) {< brk.from && y >< brk.to) || (threshold >< brk.from)) { /<= dataLength; i++) {<= dataLength; i++) {< valuesLen; j++) {< pointArrayMapLength; j++) {< xAxis.dataMin && visible) {

< point.close<= point.x && leftPoint[onKey] !== undefined) {<= lastX) { /< point.x && !step) {< 1.3) {<= dataMin) {< limit.left) {< length - 1; i++) {}));