mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
chart font export
git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47298 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
committed by
Alexander.Trofimov
parent
476972672d
commit
50712b433d
@ -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;
|
||||
@ -1168,7 +1171,10 @@ prot["asc_getSubTitle"] = prot.asc_getSubTitle;
|
||||
prot["asc_setSubTitle"] = prot.asc_setSubTitle;
|
||||
|
||||
prot["asc_getDefaultTitleFlag"] = prot.asc_getDefaultTitleFlag;
|
||||
prot["asc_setDefaultTitleFlag"] = prot.asc_setDefaultTitleFlag;
|
||||
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;
|
||||
@ -1252,7 +1261,10 @@ prot["asc_getShowFlag"] = prot.asc_getShowFlag;
|
||||
prot["asc_setShowFlag"] = prot.asc_setShowFlag;
|
||||
|
||||
prot["asc_getGridFlag"] = prot.asc_getGridFlag;
|
||||
prot["asc_setGridFlag"] = prot.asc_setGridFlag;
|
||||
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;
|
||||
@ -1336,7 +1351,10 @@ prot["asc_getShowFlag"] = prot.asc_getShowFlag;
|
||||
prot["asc_setShowFlag"] = prot.asc_setShowFlag;
|
||||
|
||||
prot["asc_getGridFlag"] = prot.asc_getGridFlag;
|
||||
prot["asc_setGridFlag"] = prot.asc_setGridFlag;
|
||||
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;
|
||||
@ -1410,7 +1431,10 @@ prot["asc_getShowFlag"] = prot.asc_getShowFlag;
|
||||
prot["asc_setShowFlag"] = prot.asc_setShowFlag;
|
||||
|
||||
prot["asc_getOverlayFlag"] = prot.asc_getOverlayFlag;
|
||||
prot["asc_setOverlayFlag"] = prot.asc_setOverlayFlag;
|
||||
prot["asc_setOverlayFlag"] = prot.asc_setOverlayFlag;
|
||||
|
||||
prot["asc_getFont"] = prot.asc_getFont;
|
||||
prot["asc_setFont"] = prot.asc_setFont;
|
||||
//}
|
||||
|
||||
//-----------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user