Commit 0762d8dd 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@56395 954022d7-b5bf-4e40-9824-e11837661b57
parent be439e2f
No related merge requests found
......@@ -210,9 +210,46 @@
this.separator = null;
this.horAxisProps = null;
this.vertAxisProps = null;
this.range = null;
this.inColumns = null;
this.showMarker = null;
this.bLine = null;
this.smooth = null;
}
asc_ChartSettings.prototype =
{
putShowMarker: function(v)
{
this.showMarker = v;
},
getShowMarker: function()
{
return this.showMarker;
},
putLine: function(v)
{
this.bLine = v;
},
getLine: function()
{
return this.bLine;
},
putSmooth: function(v)
{
this.smooth = v;
},
getSmooth: function()
{
return this.smooth;
},
putStyle: function(index)
{
this.style = index;
......@@ -223,6 +260,26 @@
return this.style;
},
putRange: function(range)
{
this.range = range;
},
getRange: function()
{
return this.range;
},
putInColumns: function(inColumns)
{
this.inColumns = inColumns;
},
getInColumns: function()
{
return this.inColumns;
},
putTitle: function(v)
{
this.title = v;
......@@ -419,7 +476,16 @@
prot["getHorAxisProps"] = prot.getHorAxisProps;
prot["putVertAxisProps"] = prot.putVertAxisProps;
prot["getVertAxisProps"] = prot.getVertAxisProps;
prot["putRange"] = prot.putRange;
prot["getRange"] = prot.getRange;
prot["putInColumns"] = prot.putInColumns;
prot["getInColumns"] = prot.getInColumns;
prot["putShowMarker"] = prot.putShowMarker;
prot["getShowMarker"] = prot.getShowMarker;
prot["putLine"] = prot.putLine;
prot["getLine"] = prot.getLine;
prot["putSmooth"] = prot.putSmooth;
prot["getSmooth"] = prot.getSmooth;
window["asc_ChartSettings"] = asc_ChartSettings;
......
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