Commit e7084fcc authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

Имена серий на открытие

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49081 954022d7-b5bf-4e40-9824-e11837661b57
parent 0ddb1db7
...@@ -1718,14 +1718,20 @@ function Binary_ChartReader(stream, chart, chartAsGroup) ...@@ -1718,14 +1718,20 @@ function Binary_ChartReader(stream, chart, chartAsGroup)
}); });
} }
else if ( c_oSer_ChartSeriesType.Tx === type ) else if ( c_oSer_ChartSeriesType.Tx === type )
seria.title = this.stream.GetString2LE(length); seria.Tx = this.stream.GetString2LE(length);
// else if ( c_oSer_ChartSeriesType.TxRef === type ) else if ( c_oSer_ChartSeriesType.TxRef === type )
// { {
// seria.TxRef = new Object(); var oTxRef = { Formula: null, NumCache: [] };
// res = this.bcr.Read1(length, function(t,l){ res = this.bcr.Read1(length, function(t,l){
// return oThis.ReadSeriesNumCache(t,l, seria.TxRef); return oThis.ReadSeriesNumCache(t,l, oTxRef);
// }); });
// } if(oTxRef.NumCache.length > 0)
{
var elem = oTxRef.NumCache[0];
if(null != elem && null != elem.val)
seria.Tx = elem.val;
}
}
else if ( c_oSer_ChartSeriesType.Marker === type ) else if ( c_oSer_ChartSeriesType.Marker === type )
{ {
res = this.bcr.Read2Spreadsheet(length, function(t,l){ res = this.bcr.Read2Spreadsheet(length, function(t,l){
......
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