Commit 1086d08a authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 27540 - Диапазон значений диаграммы point увеличивается на единицу, если...

Bug 27540 - Диапазон значений диаграммы point увеличивается на единицу, если данные находятся на другом листе

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59654 954022d7-b5bf-4e40-9824-e11837661b57
parent 4f078101
......@@ -1801,30 +1801,40 @@ CChartSpace.prototype =
{
var r1 = this.bbox.seriesBBox.r1, r2 = this.bbox.seriesBBox.r2, c1 = this.bbox.seriesBBox.c1, c2 = this.bbox.seriesBBox.c2;
ret.bVert = this.bbox.seriesBBox.bVert;
//if(this.bbox.seriesBBox.bVert)
//{
// ret.bVert = true;
// if(this.bbox.catBBox)
// {
// --r1;
// }
// if(this.bbox.serBBox)
// {
// --c1;
// }
//}
//else
//{
// ret.bVert = false;
// if(this.bbox.catBBox)
// {
// --c1;
// }
// if(this.bbox.serBBox)
// {
// --r1;
// }
//}
if(this.bbox.seriesBBox.bVert)
{
if(this.bbox.catBBox)
{
if(r1 > 0)
{
--r1;
}
}
if(this.bbox.serBBox)
{
if(c1 > 0)
{
--c1;
}
}
}
else
{
if(this.bbox.catBBox)
{
if(c1 > 0)
{
--c1;
}
}
if(this.bbox.serBBox)
{
if(r1 > 0)
{
--r1;
}
}
}
var startCell = new CellAddress(r1, c1, 0);
var endCell = new CellAddress(r2, c2, 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