Commit a4db5301 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

bug #31387 - Ошибки в консоли после изменения типа диаграммы и ее перемещения в XLSX книге

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67536 954022d7-b5bf-4e40-9824-e11837661b57
parent 5f1c2af8
......@@ -1323,6 +1323,14 @@ CChartsDrawer.prototype =
arrayValues[i] = arrayValues[i] / 100;
}
if(this.calcProp.subType == 'stackedPer')
{
//TODO пересмотреть все ситуации, когда заданы фиксированные максимальные и минимальные значение выше 100%
if(step > axisMax)
arrayValues = [axisMin, axisMax];
}
if(!arrayValues.length)
arrayValues = [0.2, 0.4, 0.6, 0.8, 1, 1.2];
......
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