Commit bc9d4cf2 authored by GoshaZotov's avatar GoshaZotov

bIsNoSmartAttack = true -> draw only line and scatter charts

parent 88d31bac
......@@ -233,9 +233,16 @@ 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