Commit 3638b101 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 26651 - Потеря отрисовки диаграммы при скрытии значений фильтрованного диапазона

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59681 954022d7-b5bf-4e40-9824-e11837661b57
parent 017cf6a6
......@@ -6667,7 +6667,9 @@ CChartSpace.prototype =
var RGBA = {R: 0, G: 0, B: 0, A: 255};
if(this.chart.plotArea.chart.varyColors && (series.length === 1 || this.chart.plotArea.chart.getObjectType() === historyitem_type_PieChart || this.chart.plotArea.chart.getObjectType() === historyitem_type_DoughnutChart))
{
var ser = series[0];
for(var ii = 0; ii < series.length; ++ ii)
{
var ser = series[ii];
var pts = getPtsFromSeries(ser);
if(!(this.chart.plotArea.chart.getObjectType() === historyitem_type_LineChart || this.chart.plotArea.chart.getObjectType() === historyitem_type_ScatterChart))
{
......@@ -6804,6 +6806,8 @@ CChartSpace.prototype =
}
}
}
}
else
{
......
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