Commit bccdf207 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

git-svn-id:...

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49957 954022d7-b5bf-4e40-9824-e11837661b57
parent d0d8c41c
......@@ -1002,6 +1002,17 @@ function insertChart(chart, activeWorkSheet, width, height, isNewChart, options)
arrBaseColors = styleManager.getBaseColors( parseInt(chart.styleId) );
var arrFormatAdobeLabels = [];
//просматриваем bShowValue для каждой из серий
//TODO позже отрисовывать значения для каждой серии индивидуально
if ( !chart.bShowValue ) {
for (var n = 0; n < chart.series.length; n++) {
if ( chart.series[n].bShowValue ) {
chart.bShowValue = true;
break;
}
}
}
if(chart.series && chart.series.length != 0 /*&& !chart.range.intervalObject*/)//берём данные из NumCache
{
isSeries = true;
......
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