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

asc_getLineWeight return lineWeight or default if not exist

parent 613522e3
......@@ -4832,7 +4832,7 @@ CellArea.prototype = {
return null !== this.type ? this.type : Asc.c_oAscSparklineType.Line;
};
sparklineGroup.prototype.asc_getLineWeight = function () {
return this.lineWeight;
return null !== this.lineWeight ? this.lineWeight : 0.75;
};
sparklineGroup.prototype.asc_getDisplayEmpty = function () {
return null !== this.displayEmptyCellsAs ? this.displayEmptyCellsAs : Asc.c_oAscEDispBlanksAs.Zero;
......
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