Commit 114326a0 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Прпадала линейная 3д диаграмма после смены с точечной

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68555 954022d7-b5bf-4e40-9824-e11837661b57
parent a6bf6009
...@@ -3171,13 +3171,13 @@ DrawingObjectsController.prototype = ...@@ -3171,13 +3171,13 @@ DrawingObjectsController.prototype =
checkDataLabels(chart_type).setSeparator(chartSettings.separator); checkDataLabels(chart_type).setSeparator(chartSettings.separator);
} }
if(chart_type.getObjectType() === historyitem_type_LineChart && !chart.view3D) if(chart_type.getObjectType() === historyitem_type_LineChart )
{ {
if(!isRealBool(chartSettings.showMarker)) if(!isRealBool(chartSettings.showMarker) || chart.view3D)
{ {
chartSettings.showMarker = false; chartSettings.showMarker = false;
} }
if(!isRealBool(chartSettings.bLine)) if(!isRealBool(chartSettings.bLine) || chart.view3D)
{ {
chartSettings.bLine = true; chartSettings.bLine = true;
} }
......
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