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

чтение запись bShowValue для серий.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49954 954022d7-b5bf-4e40-9824-e11837661b57
parent 16cbc779
......@@ -1137,8 +1137,8 @@ function BinaryChartWriter(memory)
this.bs.WriteItem(c_oSer_ChartSeriesType.Marker, function(){oThis.WriteSeriesMarkers(seria.Marker);});
if(null != nIndex)
this.bs.WriteItem(c_oSer_ChartSeriesType.Index, function(){oThis.memory.WriteLong(nIndex);});
if(null != nIndex)
this.bs.WriteItem(c_oSer_ChartSeriesType.Index, function(){oThis.memory.WriteLong(nIndex);});
if(null != seria.bShowValue)
this.bs.WriteItem(c_oSer_ChartSeriesType.DataLabels, function(){oThis.memory.WriteDataLabels(seria);});
if(null != seria.OutlineColor)
{
var oSolidFill = new CSolidFill();
......@@ -1862,6 +1862,8 @@ function Binary_ChartReader(stream, chart, chartAsGroup)
});
if(null != oOutput.TxPrPptx && null != oOutput.TxPrPptx.font)
seria.LabelFont = oOutput.TxPrPptx.font;
if(null != oOutput.ShowVal)
seria.bShowValue = oOutput.ShowVal;
}
else if ( c_oSer_ChartSeriesType.SpPr === type )
{
......
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