Commit 50712b43 authored by Dmitry.Vikulov's avatar Dmitry.Vikulov Committed by Alexander.Trofimov

chart font export

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47298 954022d7-b5bf-4e40-9824-e11837661b57
parent 47697267
......@@ -1128,6 +1128,9 @@ asc_CChartHeader.prototype = {
asc_getDefaultTitleFlag: function() { return this.bDefaultTitle; },
asc_setDefaultTitleFlag: function(defaultTitleFlag) { this.bDefaultTitle = defaultTitleFlag; },
asc_getFont: function() { return this.font; },
asc_setFont: function(fontObj) { this.font = fontObj; },
// For collaborative editing
getType: function() {
return UndoRedoDataTypes.ChartHeader;
......@@ -1169,6 +1172,9 @@ prot["asc_setSubTitle"] = prot.asc_setSubTitle;
prot["asc_getDefaultTitleFlag"] = prot.asc_getDefaultTitleFlag;
prot["asc_setDefaultTitleFlag"] = prot.asc_setDefaultTitleFlag;
prot["asc_getFont"] = prot.asc_getFont;
prot["asc_setFont"] = prot.asc_setFont;
//}
//-----------------------------------------------------------------------------------
......@@ -1207,6 +1213,9 @@ asc_CChartAxisX.prototype = {
asc_getGridFlag: function() { return this.bGrid; },
asc_setGridFlag: function(gridFlag) { this.bGrid = gridFlag; },
asc_getFont: function() { return this.font; },
asc_setFont: function(fontObj) { this.font = fontObj; },
// For collaborative editing
getType: function() {
return UndoRedoDataTypes.ChartAxisX;
......@@ -1253,6 +1262,9 @@ prot["asc_setShowFlag"] = prot.asc_setShowFlag;
prot["asc_getGridFlag"] = prot.asc_getGridFlag;
prot["asc_setGridFlag"] = prot.asc_setGridFlag;
prot["asc_getFont"] = prot.asc_getFont;
prot["asc_setFont"] = prot.asc_setFont;
//}
//-----------------------------------------------------------------------------------
......@@ -1291,6 +1303,9 @@ asc_CChartAxisY.prototype = {
asc_getGridFlag: function() { return this.bGrid; },
asc_setGridFlag: function(gridFlag) { this.bGrid = gridFlag; },
asc_getFont: function() { return this.font; },
asc_setFont: function(fontObj) { this.font = fontObj; },
// For collaborative editing
getType: function() {
return UndoRedoDataTypes.ChartAxisY;
......@@ -1337,6 +1352,9 @@ prot["asc_setShowFlag"] = prot.asc_setShowFlag;
prot["asc_getGridFlag"] = prot.asc_getGridFlag;
prot["asc_setGridFlag"] = prot.asc_setGridFlag;
prot["asc_getFont"] = prot.asc_getFont;
prot["asc_setFont"] = prot.asc_setFont;
//}
//-----------------------------------------------------------------------------------
......@@ -1370,6 +1388,9 @@ asc_CChartLegend.prototype = {
asc_getOverlayFlag: function() { return this.bOverlay; },
asc_setOverlayFlag: function(overlayFlag) { this.bOverlay = overlayFlag; },
asc_getFont: function() { return this.font; },
asc_setFont: function(fontObj) { this.font = fontObj; },
// For collaborative editing
getType: function() {
return UndoRedoDataTypes.ChartLegend;
......@@ -1411,6 +1432,9 @@ prot["asc_setShowFlag"] = prot.asc_setShowFlag;
prot["asc_getOverlayFlag"] = prot.asc_getOverlayFlag;
prot["asc_setOverlayFlag"] = prot.asc_setOverlayFlag;
prot["asc_getFont"] = prot.asc_getFont;
prot["asc_setFont"] = prot.asc_setFont;
//}
//-----------------------------------------------------------------------------------
......
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