Commit a27a56a6 authored by Sergey Luzyanin's avatar Sergey Luzyanin

fix Bug 33401

parent 40039102
...@@ -3802,14 +3802,11 @@ DrawingObjectsController.prototype = ...@@ -3802,14 +3802,11 @@ DrawingObjectsController.prototype =
{ {
if(!chart_type.series[j].marker) if(!chart_type.series[j].marker)
{ {
if(!chart_type.series[j].marker) chart_type.series[j].setMarker(new AscFormat.CMarker());
{ }
chart_type.series[j].setMarker(new AscFormat.CMarker()); if(chart_type.series[j].marker.symbol !== AscFormat.SYMBOL_NONE)
} {
if(chart_type.series[j].marker.symbol !== AscFormat.SYMBOL_NONE) chart_type.series[j].marker.setSymbol(AscFormat.SYMBOL_NONE);
{
chart_type.series[j].marker.setSymbol(AscFormat.SYMBOL_NONE);
}
} }
} }
} }
......
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