Commit 241bb4b6 authored by Sergey.Konovalov's avatar Sergey.Konovalov

(1.0.0.110): XlsxSerializerCom

Сохранение в chart в xlsx

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55420 954022d7-b5bf-4e40-9824-e11837661b57
parent 8c9eaf55
...@@ -4546,17 +4546,17 @@ CCat.prototype = ...@@ -4546,17 +4546,17 @@ CCat.prototype =
setNumLit: function(pr) setNumLit: function(pr)
{ {
History.Add(this, {Type: historyitem_Cat_SetMultiLvlStrRef, oldPr: this.multiLvlStrRef, newPr: pr}); History.Add(this, {Type: historyitem_Cat_SetMultiLvlStrRef, oldPr: this.multiLvlStrRef, newPr: pr});
this.multiLvlStrRef = pr; this.numLit = pr;
}, },
setNumRef: function(pr) setNumRef: function(pr)
{ {
History.Add(this, {Type: historyitem_Cat_SetMultiLvlStrRef, oldPr: this.multiLvlStrRef, newPr: pr}); History.Add(this, {Type: historyitem_Cat_SetMultiLvlStrRef, oldPr: this.multiLvlStrRef, newPr: pr});
this.multiLvlStrRef = pr; this.numRef = pr;
}, },
setStrLit: function(pr) setStrLit: function(pr)
{ {
History.Add(this, {Type: historyitem_Cat_SetMultiLvlStrRef, oldPr: this.multiLvlStrRef, newPr: pr}); History.Add(this, {Type: historyitem_Cat_SetMultiLvlStrRef, oldPr: this.multiLvlStrRef, newPr: pr});
this.multiLvlStrRef = pr; this.strLit = pr;
}, },
setStrRef: function(pr) setStrRef: function(pr)
{ {
...@@ -7869,7 +7869,7 @@ CErrBars.prototype = ...@@ -7869,7 +7869,7 @@ CErrBars.prototype =
setErrValType: function(pr) setErrValType: function(pr)
{ {
History.Add(this, {Type: historyitem_ErrBars_SetErrValType, oldPr: this.errDir, newPr: pr}); History.Add(this, {Type: historyitem_ErrBars_SetErrValType, oldPr: this.errDir, newPr: pr});
this.errDir = pr; this.errValType = pr;
}, },
setMinus: function(pr) setMinus: function(pr)
{ {
...@@ -12726,7 +12726,7 @@ function CRadarSeries() ...@@ -12726,7 +12726,7 @@ function CRadarSeries()
this.tx = null; this.tx = null;
this.val = null; this.val = null;
this.Id = g_oIdCouner.Get_NewId(); this.Id = g_oIdCounter.Get_NewId();
g_oTableId.Add(this, this.Id); g_oTableId.Add(this, this.Id);
} }
...@@ -14779,7 +14779,7 @@ function CSurfaceChart() ...@@ -14779,7 +14779,7 @@ function CSurfaceChart()
this.series = []; this.series = [];
this.wireframe = null; this.wireframe = null;
this.Id = g_oTableId.Get_NewId(); this.Id = g_oIdCounter.Get_NewId();
} }
CSurfaceChart.prototype = CSurfaceChart.prototype =
......
This diff is collapsed.
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