Commit 612b2d65 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

правка бага 21898 - [Charts] Не изменяется курсор мыши при наведении на некоторые маркеры диаграммы

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51334 954022d7-b5bf-4e40-9824-e11837661b57
parent 9f36eb70
......@@ -468,6 +468,15 @@ CChartAsGroup.prototype =
this.absOffsetY = scale_scale_coefficients.cy*(xfrm.offY - this.group.spPr.xfrm.chOffY);
this.absExtX = scale_scale_coefficients.cx*xfrm.extX;
this.absExtY = scale_scale_coefficients.cy*xfrm.extY;
}
if(this.parent)
{
//this.parent.absOffsetX = data.oldPosX;
//this.parent.absOffsetY = data.oldPosY;
this.parent.absExtX = this.absExtX;
this.parent.absExtY = this.absExtY;
}
this.spPr.geometry.Recalculate(this.absExtX, this.absExtY);
},
......
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