Commit de18ecdd authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 25573 - Точки диаграммы типа Point соединяются линиями после экспорта

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57407 954022d7-b5bf-4e40-9824-e11837661b57
parent 47be5028
...@@ -22740,6 +22740,32 @@ CXVal.prototype = ...@@ -22740,6 +22740,32 @@ CXVal.prototype =
this.Id = r.GetString2(); this.Id = r.GetString2();
}, },
createDuplicate: function()
{
var ret = new CXVal();
if(this.multiLvlStrRef)
{
ret.setMultiLvlStrRef(this.multiLvlStrRef.createDuplicate());
}
if(this.numLit)
{
ret.setNumLit(this.numLit.createDuplicate());
}
if(this.numRef)
{
ret.setNumRef(this.numRef.createDuplicate());
}
if(this.strRef)
{
ret.setStrRef(this.strRef.createDuplicate());
}
if(this.strLit)
{
ret.setStrLit(this.strLit.createDuplicate());
}
return ret;
},
setFromOtherObject: function(o) setFromOtherObject: function(o)
{ {
if(o.multiLvlStrRef) if(o.multiLvlStrRef)
......
This diff is collapsed.
...@@ -77,7 +77,8 @@ CChartSpace.prototype.setRecalculateInfo = function() ...@@ -77,7 +77,8 @@ CChartSpace.prototype.setRecalculateInfo = function()
recalculateBBox: true, recalculateBBox: true,
recalculateFormulas: true, recalculateFormulas: true,
recalculatePenBrush: true, recalculatePenBrush: true,
recalculateTextPr : true recalculateTextPr : true,
recalculateBBoxRange: true
}; };
this.baseColors = []; this.baseColors = [];
this.bounds = {l: 0, t: 0, r: 0, b:0, w: 0, h:0}; this.bounds = {l: 0, t: 0, r: 0, b:0, w: 0, h:0};
...@@ -221,6 +222,8 @@ CChartSpace.prototype.recalculateBounds = function() ...@@ -221,6 +222,8 @@ CChartSpace.prototype.recalculateBounds = function()
}; };
CChartSpace.prototype.recalculate = function() CChartSpace.prototype.recalculate = function()
{ {
if(this.bDeleted) if(this.bDeleted)
......
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