Commit 066e81e2 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 33467

parent c01644af
...@@ -5237,10 +5237,10 @@ CellArea.prototype = { ...@@ -5237,10 +5237,10 @@ CellArea.prototype = {
return this.displayHidden; return this.displayHidden;
}; };
sparklineGroup.prototype.asc_getMinAxisType = function () { sparklineGroup.prototype.asc_getMinAxisType = function () {
return this.minAxisType; return null !== this.minAxisType ? this.minAxisType : Asc.c_oAscSparklineAxisMinMax.Individual;
}; };
sparklineGroup.prototype.asc_getMaxAxisType = function () { sparklineGroup.prototype.asc_getMaxAxisType = function () {
return this.maxAxisType; return null !== this.maxAxisType ? this.minAxisType : Asc.c_oAscSparklineAxisMinMax.Individual;
}; };
sparklineGroup.prototype.asc_getRightToLeft = function () { sparklineGroup.prototype.asc_getRightToLeft = function () {
return this.rightToLeft; 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