Commit 4f06259e authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Баг с маркером в линейной диаграмме.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@63911 954022d7-b5bf-4e40-9824-e11837661b57
parent 9394e294
...@@ -2909,21 +2909,13 @@ DrawingObjectsController.prototype = ...@@ -2909,21 +2909,13 @@ DrawingObjectsController.prototype =
{ {
chartSettings.bLine = true; chartSettings.bLine = true;
} }
if(chartSettings.showMarker) if(chartSettings.showMarker)
{
//for(var j = 0; j < chart_type.series.length; ++j)
//{
// chart_type.series[j].setMarker(null);
//}
if(chartSettings.showMarker === true)
{ {
if(!chart_type.marker) if(!chart_type.marker)
{ {
chart_type.setMarker(true); chart_type.setMarker(true);
} }
}
if(chartSettings.showMarker)
{
for(var j = 0; j < chart_type.series.length; ++j) for(var j = 0; j < chart_type.series.length; ++j)
{ {
if(chart_type.series[j].marker) if(chart_type.series[j].marker)
...@@ -2949,7 +2941,6 @@ DrawingObjectsController.prototype = ...@@ -2949,7 +2941,6 @@ DrawingObjectsController.prototype =
} }
} }
} }
}
if(!chartSettings.bLine) if(!chartSettings.bLine)
{ {
......
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