Commit a1659884 authored by GoshaZotov's avatar GoshaZotov

fix bug 32979

parent 0ee5043c
......@@ -8057,7 +8057,17 @@ drawPieChart.prototype =
var path;
if(this.cChartDrawer.nDimensionCount === 3)
path = this.paths.series[this.paths.series.length - 1][val].ArrPathCommand;
{
//TODO переделать на idx
if(!this.paths.series[this.paths.series.length - 1][val])
{
return;
}
else
{
path = this.paths.series[this.paths.series.length - 1][val].ArrPathCommand;
}
}
else
path = this.paths.series[val].ArrPathCommand;
......
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