Commit 62ff880d authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

Fix Bug 20215 - Невозможно изменить ширину/высоту диаграммы из правой панели свойств

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49583 954022d7-b5bf-4e40-9824-e11837661b57
parent 88ccc251
......@@ -1258,6 +1258,11 @@ DrawingObjectsController.prototype =
ArrGlyph[i].calculateContent();
ArrGlyph[i].calculateTransformTextMatrix();
}
else if (ArrGlyph[i].isChart())
{
ArrGlyph[i].setExtents(result_width, result_height);
ArrGlyph[i].recalculate();
}
}
else if (ArrGlyph[i].isImage())
......
......@@ -54,6 +54,10 @@ CChartAsGroup.prototype =
return this.Id;
},
checkLine: function()
{
return false;
},
setDrawingObjects: function(drawingObjects)
{
......
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