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

fix bug 33462

parent 90292e93
...@@ -5213,22 +5213,22 @@ CellArea.prototype = { ...@@ -5213,22 +5213,22 @@ CellArea.prototype = {
return null !== this.displayEmptyCellsAs ? this.displayEmptyCellsAs : Asc.c_oAscEDispBlanksAs.Zero; return null !== this.displayEmptyCellsAs ? this.displayEmptyCellsAs : Asc.c_oAscEDispBlanksAs.Zero;
}; };
sparklineGroup.prototype.asc_getMarkersPoint = function () { sparklineGroup.prototype.asc_getMarkersPoint = function () {
return this.markers; return !!this.markers;
}; };
sparklineGroup.prototype.asc_getHighPoint = function () { sparklineGroup.prototype.asc_getHighPoint = function () {
return this.high; return !!this.high;
}; };
sparklineGroup.prototype.asc_getLowPoint = function () { sparklineGroup.prototype.asc_getLowPoint = function () {
return this.low; return !!this.low;
}; };
sparklineGroup.prototype.asc_getFirstPoint = function () { sparklineGroup.prototype.asc_getFirstPoint = function () {
return this.first; return !!this.first;
}; };
sparklineGroup.prototype.asc_getLastPoint = function () { sparklineGroup.prototype.asc_getLastPoint = function () {
return this.last; return !!this.last;
}; };
sparklineGroup.prototype.asc_getNegativePoint = function () { sparklineGroup.prototype.asc_getNegativePoint = function () {
return this.negative; return !!this.negative;
}; };
sparklineGroup.prototype.asc_getDisplayXAxis = function () { sparklineGroup.prototype.asc_getDisplayXAxis = function () {
return this.displayXAxis; return this.displayXAxis;
......
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