新增 admin 下 由于文件夹名称log而丢失的文件

This commit is contained in:
张乐
2020-08-17 16:17:57 +08:00
parent a0311f57f3
commit e0d211275d
25 changed files with 503 additions and 559 deletions

View File

@@ -7013,13 +7013,13 @@ Axis.prototype = {
val = val * sign + cvsOffset;
val -= minPixelPadding;
returnValue = val / localA + localMin; // from chart pixel to value
if (postTranslate) { // log and ordinal axes
if (postTranslate) { // integralLog and ordinal axes
returnValue = axis.lin2val(returnValue);
}
// From value to pixels
} else {
if (postTranslate) { // log and ordinal axes
if (postTranslate) { // integralLog and ordinal axes
val = axis.val2lin(val);
}
if (pointPlacement === 'between') {
@@ -7487,7 +7487,7 @@ Axis.prototype = {
if (isLog) {
if (!secondPass && mathMin(axis.min, pick(axis.dataMin, axis.min)) <= 0) { // #978
error(10, 1); // Can't plot negative values on log axis
error(10, 1); // Can't plot negative values on integralLog axis
}
axis.min = correctFloat(log2lin(axis.min)); // correctFloat cures #934
axis.max = correctFloat(log2lin(axis.max));
@@ -8039,7 +8039,7 @@ Axis.prototype = {
lineNo = i % autoStaggerLines;
if (w) {
x = axis.translate(pos); // don't handle log
x = axis.translate(pos); // don't handle integralLog
if (lastRight[lineNo] !== UNDEFINED && x < lastRight[lineNo]) {
overlap = true;
}
@@ -13596,7 +13596,7 @@ Series.prototype = {
yDataLength = yData.length,
activeYData = [],
activeCounter = 0,
xExtremes = xAxis.getExtremes(), // #2117, need to compensate for log X axis
xExtremes = xAxis.getExtremes(), // #2117, need to compensate for integralLog X axis
xMin = xExtremes.min,
xMax = xExtremes.max,
validValue,
@@ -13671,7 +13671,7 @@ Series.prototype = {
pointStack,
stackValues;
// Discard disallowed y values for log axes
// Discard disallowed y values for integralLog axes
if (yAxis.isLog && yValue <= 0) {
point.y = yValue = null;
}