Commit 04b06758 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 27533 - Не удаляется серия из легенды диаграммы, после скрытия строки

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59658 954022d7-b5bf-4e40-9824-e11837661b57
parent d35bba3d
......@@ -2312,6 +2312,7 @@ CChartSpace.prototype =
num_cache.setPtCount(pt_index);
val.numRef.setNumCache(num_cache);
ser.isHidden = hidden;
ser.isHiddenForLegend = hidden;
}
};
......@@ -5285,7 +5286,7 @@ CChartSpace.prototype =
{
ser = series[i];
arr_str_labels.push(ser.getSeriesName());
if(ser.isHidden)
if(ser.isHiddenForLegend)
continue;
calc_entry = new CalcLegendEntry(legend, this);
calc_entry.txBody = CreateTextBodyFromString(arr_str_labels[i], this.getDrawingDocument(), calc_entry);
......
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