|  | @ -12,7 +12,7 @@ function Points(groupId, options) { | 
														
													
														
															
																|  |  | Points.prototype.getYRange = function(groupData) { |  |  | Points.prototype.getYRange = function(groupData) { | 
														
													
														
															
																|  |  | var yMin = groupData[0].y; |  |  | var yMin = groupData[0].y; | 
														
													
														
															
																|  |  | var yMax = groupData[0].y; |  |  | var yMax = groupData[0].y; | 
														
													
														
															
																|  |  | for (j = 0; j < groupData.length; j++) { |  |  |  | 
														
													
														
															
																|  |  |  |  |  | for (var j = 0; j < groupData.length; j++) { | 
														
													
														
															
																|  |  | yMin = yMin > groupData[j].y ? groupData[j].y : yMin; |  |  | yMin = yMin > groupData[j].y ? groupData[j].y : yMin; | 
														
													
														
															
																|  |  | yMax = yMax < groupData[j].y ? groupData[j].y : yMax; |  |  | yMax = yMax < groupData[j].y ? groupData[j].y : yMax; | 
														
													
														
															
																|  |  | } |  |  | } | 
														
													
												
													
														
															
																|  |  |