x-spreadsheet row limit

lfapxunr  于 2022-12-31  发布在  其他
关注(0)|答案(3)|浏览(293)

I was wondering what the row limit was?

Is this build using react?

xmq68pz9

xmq68pz91#

Set the properties you need to override

/*
const options = {
view: {
height: () => document.documentElement.clientHeight - 41,
width: () => document.documentElement.clientWidth,
},
row: {
len: 100,
height: 25,
},
col: {
len: 26,
width: 100,
indexWidth: 60,
minWidth: 60,
},
style: {
bgcolor: '#ffffff',
align: 'left',
valign: 'middle',
textwrap: false,
textDecoration: 'normal',
strikethrough: false,
color: '#0a0a0a',
font: {
name: 'Helvetica',
size: 10,
bold: false,
italic: false,
},
},
}
*/
const options = {
  row: { len: 200 }
}
new Spreadsheet(el, options).loadData({});
jfewjypa

jfewjypa2#

Is there full documentation anywhere?

Can it handle 1M+ rows?

相关问题