Commit 5fe4d17d authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 27701 - Не происходит перерисовка диаграммы после сдвига ее диапазона...

Bug 27701 - Не происходит перерисовка диаграммы после сдвига ее диапазона построения с помощью вставки или удаления строк 

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59960 954022d7-b5bf-4e40-9824-e11837661b57
parent 5aa564d2
...@@ -2727,7 +2727,7 @@ function DrawingObjects() { ...@@ -2727,7 +2727,7 @@ function DrawingObjects() {
} }
if(data.added) if(data.added)
{ {
changedArr.push(new BBoxInfo(worksheet.model, asc_Range(data.added.c1, data.added.r1, data.added.c2, data.added.r2))) changedArr.push(new BBoxInfo(worksheet.model, asc_Range(data.added.c1, data.added.r1, gc_nMaxCol, gc_nMaxRow)))
} }
if(data.hided) if(data.hided)
...@@ -2737,7 +2737,7 @@ function DrawingObjects() { ...@@ -2737,7 +2737,7 @@ function DrawingObjects() {
if(data.removed) if(data.removed)
{ {
changedArr.push(new BBoxInfo(worksheet.model, asc_Range(data.removed.c1, data.removed.r1, data.removed.c2, data.removed.r2))) changedArr.push(new BBoxInfo(worksheet.model, asc_Range(data.removed.c1, data.removed.r1, gc_nMaxCol, gc_nMaxRow)))
} }
if(Array.isArray(data.arrChanged)) if(Array.isArray(data.arrChanged))
{ {
......
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