Commit 4b320d8d 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@55814 954022d7-b5bf-4e40-9824-e11837661b57
parent 762cba76
......@@ -7472,7 +7472,13 @@ catAxisChart.prototype =
var firstDiff = 0, posXtemp;
if(this.chartSpace.chart.plotArea.valAx.crossBetween == CROSS_BETWEEN_BETWEEN && this.chartProp.type != "Scatter")
firstDiff = Math.abs(xPoints[1].pos - xPoints[0].pos);
{
if(xPoints[1])
firstDiff = Math.abs(xPoints[1].pos - xPoints[0].pos);
else if(this.chartSpace.chart.plotArea.catAx.posY)
firstDiff = Math.abs(this.chartSpace.chart.plotArea.catAx.posY - xPoints[0].pos);
};
if(orientation == ORIENTATION_MIN_MAX)
{
......
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