45 lines
956 B
JavaScript
45 lines
956 B
JavaScript
const luckysheetConfigsetting = {
|
|
autoFormatw: false,
|
|
accuracy: undefined,
|
|
total: 0,
|
|
|
|
allowCopy: true,
|
|
showtoolbar: true,
|
|
showinfobar: true,
|
|
showsheetbar: true,
|
|
showstatisticBar: true,
|
|
pointEdit: false,
|
|
pointEditUpdate: null,
|
|
pointEditZoom: 1,
|
|
|
|
userInfo: false,
|
|
userMenuItem: [],
|
|
myFolderUrl: null,
|
|
functionButton: null,
|
|
|
|
showConfigWindowResize: true,
|
|
enableAddRow: true,
|
|
addRowCount: 100,
|
|
enableAddBackTop: true,
|
|
enablePage: true,
|
|
pageInfo: null,
|
|
|
|
|
|
editMode: false,
|
|
beforeCreateDom: null,
|
|
workbookCreateBefore: null,
|
|
workbookCreateAfter: null,
|
|
remoteFunction: null,
|
|
fireMousedown: null,
|
|
plugins:[],
|
|
forceCalculation:false,//强制刷新公式,公式较多会有性能问题,慎用
|
|
|
|
defaultColWidth:73,
|
|
defaultRowHeight:19,
|
|
|
|
defaultTextColor: '#000',
|
|
defaultCellColor: '#fff',
|
|
}
|
|
|
|
export default luckysheetConfigsetting;
|