Commit 0e9e731d authored by GoshaZotov's avatar GoshaZotov Committed by Alexander.Trofimov

bIsNoSmartAttack = true -> draw only line and scatter charts

parent 79b14b7d
......@@ -209,10 +209,17 @@ CChartsDrawer.prototype =
if(this.nDimensionCount !== 3)
{
this.cShapeDrawer.bIsNoSmartAttack = true;
this.chart.draw(this);
this.cShapeDrawer.bIsNoSmartAttack = false;
if(this.calcProp.type === "Line" && this.calcProp.type === "Scatter")
{
this.cShapeDrawer.bIsNoSmartAttack = true;
this.chart.draw(this);
this.cShapeDrawer.bIsNoSmartAttack = false;
}
else
{
this.chart.draw(this);
}
}
}
},
......
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