Commit 6e3c1a57 authored by GoshaZotov's avatar GoshaZotov

fix bug 34182

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