Commit e8eddad0 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov
parent dca2abb7
......@@ -89735,7 +89735,15 @@ DrawingObjectsController.prototype =
if(chart_type.getObjectType() === historyitem_type_LineChart )
{
if(isRealBool(chartSettings.showMarker))
if(!isRealBool(chartSettings.showMarker))
{
chartSettings.showMarker = false;
}
if(!isRealBool(chartSettings.bLine))
{
chartSettings.bLine = true;
}
if(chartSettings.showMarker)
{
//for(var j = 0; j < chart_type.series.length; ++j)
//{
......@@ -89776,8 +89784,7 @@ DrawingObjectsController.prototype =
}
}
}
if(isRealBool(chartSettings.bLine))
{
if(!chartSettings.bLine)
{
for(var j = 0; j < chart_type.series.length; ++j)
......@@ -89822,9 +89829,17 @@ DrawingObjectsController.prototype =
}
}
}
}
if(chart_type.getObjectType() === historyitem_type_ScatterChart)
{
if(!isRealBool(chartSettings.showMarker))
{
chartSettings.showMarker = true;
}
if(!isRealBool(chartSettings.bLine))
{
chartSettings.bLine = false;
}
for(var i = 0; i < chart_type.series.length; ++i)
{
if(chart_type.series[i].marker)
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