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

читаю параметр сглаженная линия при открытии

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55533 954022d7-b5bf-4e40-9824-e11837661b57
parent 54e78072
......@@ -4073,6 +4073,8 @@ drawLineChart.prototype =
seria = this.chartProp.series[i];
isSplineLine = seria.smooth;
dataSeries = seria.val.numRef ? seria.val.numRef.numCache.pts : seria.val.numLit.pts;
if(dataSeries.length == 1)
......@@ -5930,6 +5932,9 @@ drawScatterChart.prototype =
seria = this.chartProp.series[i];
points = [];
yNumCache = seria.yVal.numRef.numCache ? seria.yVal.numRef.numCache : seria.yVal.numRef.numLit;
isSplineLine = seria.smooth;
for(var n = 0; n < yNumCache.pts.length; n++)
{
yVal = parseFloat(yNumCache.pts[n].val);
......
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