Commit 65dc0301 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

Bug 21966 - Потеря одной из осей и замена заголовка в диаграмме типа Bar при...

Bug 21966 - Потеря одной из осей и замена заголовка в диаграмме типа Bar при открытии XLSX, полученного нами

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51649 954022d7-b5bf-4e40-9824-e11837661b57
parent 0f9ee7fa
......@@ -1483,6 +1483,12 @@ function Binary_ChartReader(stream, chart, chartAsGroup)
}
}
}
if(c_oAscChartType.hbar == this.chartType)
{
var oTemp = xAxis;
xAxis = yAxis;
yAxis = oTemp;
}
//выставляем начальные значения как у Excel
this.chart.xAxis.bShow = this.chart.yAxis.bShow = false;
this.chart.xAxis.bGrid = this.chart.yAxis.bGrid = false;
......@@ -1509,12 +1515,6 @@ function Binary_ChartReader(stream, chart, chartAsGroup)
var bTemp = this.chart.xAxis.bGrid;
this.chart.xAxis.bGrid = this.chart.yAxis.bGrid;
this.chart.yAxis.bGrid = bTemp;
if(c_oAscChartType.hbar == this.chartType)
{
var oTemp = this.chart.xAxis;
this.chart.xAxis = this.chart.yAxis;
this.chart.yAxis = oTemp;
}
if ( xAxis )
{
if(this.chartAsGroup.addXAxis)
......
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