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

округление минимального значения отличного от нуля

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55637 954022d7-b5bf-4e40-9824-e11837661b57
parent 8f82850f
......@@ -2609,8 +2609,13 @@ CChartsDrawer.prototype =
//минимальное значение оси
//TODO use axisMin
var minUnit = 0;
if(manualMin != null)
minUnit = manualMin;
else if(manualMin == null && axisMin != null && axisMin != 0)//TODO пересмотреть все значения, где-то могут быть расхождения с EXCEL
{
minUnit = parseInt(axisMin / step) * step;
}
else
{
if(axisMin < 0)
......
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