Commit d9c668e8 authored by GoshaZotov's avatar GoshaZotov

fix bug 33241

parent 321215ee
......@@ -601,6 +601,12 @@ Processor3D.prototype.calculatePropertiesForPieCharts = function()
depth = depth / kF;
}
//ToDo временная правка для круговой диграммы с углом поворота 0 градусов
if(0 === radius2)
{
radius2 = 1;
}
return {radius1: radius1, radius2: radius2, depth: depth};
};
......
......@@ -7197,9 +7197,13 @@ drawPieChart.prototype =
brush = val.brush;
if(n === 0 || n === this.paths.series.length - 1)
{
pen = val.pen;
}
else
{
pen = null;
}
path = this.paths.series[n][i];
......@@ -7427,7 +7431,6 @@ drawPieChart.prototype =
x0 = (xCenter + radiusSpec*Math.cos(stAng));
y0 = (yCenter - radiusSpec*Math.sin(stAng));
}
};
var path = new Path();
......
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