Commit ba6f8ffe authored by SergeyLuzyanin's avatar SergeyLuzyanin

fix 34621

parent 6ac25aaa
......@@ -8797,10 +8797,10 @@ drawPieChart.prototype =
else if(side === sides.inside)
{
//выставляю закругленные соединения
if(pen.Join)
if(pen && pen.Join)
{
pen = pen.createDuplicate();
pen.Join.type = Asc.c_oAscLineJoinType.Round;
pen.Join.type = Asc['c_oAscLineJoinType'].Round;
}
drawPath(path[j].insidePath, pen, brush, null, true);
......
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