Commit 34e17ed3 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

ошибка при открытии файла диаграммы 3д.xlsx

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67944 954022d7-b5bf-4e40-9824-e11837661b57
parent 7a0caa59
......@@ -3546,11 +3546,12 @@ drawLineChart.prototype =
{
//затемнение боковых сторон
//в excel всегда темные боковые стороны, лицевая и задняя стороны светлые
//pen = this.cChartSpace.chart.plotArea.valAx.compiledMajorGridLines;
//pen.setFill(brush);
//todo возможно стоит проверить fill.type на FILL_TYPE_NOFILL и рисовать отдельно границы, если они заданы!
brush = pen.Fill;
//pen = null;
pen = CreatePenFromParams(brush, undefined, undefined, undefined, undefined, 0.1);
if(brush.fill.color === undefined)
return;
if(k !== 2)
{
var props = this.cChartSpace.getParentObjects();
......@@ -3568,7 +3569,10 @@ drawLineChart.prototype =
this.cChartDrawer.drawPath(path, pen, duplicateBrush);
}
else
{
pen = CreatePenFromParams(brush, undefined, undefined, undefined, undefined, 0.1);
this.cChartDrawer.drawPath(path, pen, brush);
}
}
};
......
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