Commit 8be87eff authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 26651 - Потеря легенды у диаграммы типа Pie после скрытия первого значения...

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

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59745 954022d7-b5bf-4e40-9824-e11837661b57
parent b9c96e19
......@@ -5374,6 +5374,12 @@ CChartSpace.prototype =
else
{
ser = series[0];
i = 1;
while(ser && ser.isHiddenForLegend)
{
ser = series[i];
++i;
}
var pts = getPtsFromSeries(ser), pt;
var cat_str_lit = getCatStringPointsFromSeries(ser);
for(i = 0; i < pts.length; ++i)
......
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