Commit 86243563 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 26643 - Проблемы с отрисовкой диаграммы после изменения диапазона данных...

Bug 26643 - Проблемы с отрисовкой диаграммы после изменения диапазона данных на скопированном листе и удалении листа 

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58537 954022d7-b5bf-4e40-9824-e11837661b57
parent cf2670de
...@@ -3927,7 +3927,7 @@ function DrawingObjects() { ...@@ -3927,7 +3927,7 @@ function DrawingObjects() {
} }
if(bNeedRecalc) if(bNeedRecalc)
{ {
_this.controller.recalculate(); _this.controller.recalculate2();
_this.showDrawingObjects(true); _this.showDrawingObjects(true);
} }
}, _this, []); }, _this, []);
......
...@@ -152,17 +152,19 @@ CChartSpace.prototype.handleUpdateStyle = function() ...@@ -152,17 +152,19 @@ CChartSpace.prototype.handleUpdateStyle = function()
this.recalcInfo.recalculatePen = true; this.recalcInfo.recalculatePen = true;
this.addToRecalculate(); this.addToRecalculate();
}; };
CChartSpace.prototype.handleUpdateFill = function() CChartSpace.prototype.handleUpdateFill = function()
{ {
this.recalcInfo.recalculatePenBrush = true; this.recalcInfo.recalculatePenBrush = true;
this.recalcInfo.recalculateBrush = true;
this.recalcInfo.recalculateChart = true; this.recalcInfo.recalculateChart = true;
this.addToRecalculate(); this.addToRecalculate();
}; };
CChartSpace.prototype.handleUpdateLn = function() CChartSpace.prototype.handleUpdateLn = function()
{ {
this.recalcInfo.recalculatePenBrush = true; this.recalcInfo.recalculatePenBrush = true;
this.recalcInfo.recalculatePen = true;
this.recalcInfo.recalculateChart = true; this.recalcInfo.recalculateChart = true;
this.setRecalculateInfo();
this.addToRecalculate(); this.addToRecalculate();
}; };
CChartSpace.prototype.canGroup = CShape.prototype.canGroup; CChartSpace.prototype.canGroup = CShape.prototype.canGroup;
......
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