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

для scatter диаграмм не пишем категории(c:cat) в сериях

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@52994 954022d7-b5bf-4e40-9824-e11837661b57
parent da82956e
...@@ -1155,7 +1155,7 @@ function BinaryChartWriter(memory) ...@@ -1155,7 +1155,7 @@ function BinaryChartWriter(memory)
oTempSpPr.Fill = oFill; oTempSpPr.Fill = oFill;
this.bs.WriteItem(c_oSer_ChartSeriesType.SpPr, function(){window.global_pptx_content_writer.WriteSpPr(oThis.memory, oTempSpPr);}); this.bs.WriteItem(c_oSer_ChartSeriesType.SpPr, function(){window.global_pptx_content_writer.WriteSpPr(oThis.memory, oTempSpPr);});
} }
if(null != seria.Cat && (null != seria.Cat.Formula || seria.Cat.NumCache.length > 0)) if(c_oAscChartType.scatter != chart.type && null != seria.Cat && (null != seria.Cat.Formula || seria.Cat.NumCache.length > 0))
this.bs.WriteItem(c_oSer_ChartSeriesType.Cat, function(){oThis.WriteSeriesNumCache(seria.Cat);}); this.bs.WriteItem(c_oSer_ChartSeriesType.Cat, function(){oThis.WriteSeriesNumCache(seria.Cat);});
}; };
this.WriteSeriesNumCache = function(oCache) this.WriteSeriesNumCache = function(oCache)
......
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