Commit f0682a80 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 35288

asc_getMaxAxisType minAxisType -> maxAxisType
parent 94a45a7e
......@@ -4805,7 +4805,7 @@ RangeDataManager.prototype = {
return null !== this.minAxisType ? this.minAxisType : Asc.c_oAscSparklineAxisMinMax.Individual;
};
sparklineGroup.prototype.asc_getMaxAxisType = function () {
return null !== this.maxAxisType ? this.minAxisType : Asc.c_oAscSparklineAxisMinMax.Individual;
return null !== this.maxAxisType ? this.maxAxisType : Asc.c_oAscSparklineAxisMinMax.Individual;
};
sparklineGroup.prototype.asc_getRightToLeft = function () {
return this.rightToLeft;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment