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

Bug 30355 - Цвета серий не отличаются при смене типа диаграммы с Pie на любой другой в XLSX файле

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64890 954022d7-b5bf-4e40-9824-e11837661b57
parent f74ad2b7
......@@ -6805,7 +6805,7 @@ CChartSpace.prototype =
}
if(ser.spPr && ser.spPr.ln)
compiled_line.merge(ser.spPr.ln);
if(Array.isArray(ser.dPt))
if(Array.isArray(ser.dPt) && !(ser.getObjectType && ser.getObjectType() === historyitem_type_AreaSeries))
{
for(var j = 0; j < ser.dPt.length; ++j)
{
......@@ -7027,7 +7027,7 @@ CChartSpace.prototype =
{
compiled_brush.merge(ser.spPr.Fill);
}
if(Array.isArray(ser.dPt))
if(Array.isArray(ser.dPt) && !(ser.getObjectType && ser.getObjectType() === historyitem_type_AreaSeries))
{
for(var k = 0; k < ser.dPt.length; ++k)
{
......@@ -7095,7 +7095,7 @@ CChartSpace.prototype =
{
compiled_line.merge(ser.spPr.ln);
}
if(Array.isArray(ser.dPt))
if(Array.isArray(ser.dPt) && !(ser.getObjectType && ser.getObjectType() === historyitem_type_AreaSeries))
{
for(var k = 0; k < ser.dPt.length; ++k)
{
......
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