我正在使用Kendo电子表格。 我想调整工作表的列宽,但是即使可调整大小为true,它也无法正常工作。我可以添加哪些选项? 这是我的示例代码:
function Create( ){
$("#spreadsheet").kendoSpreadsheet({
columns: column_size ,
columnWidth : 150,
headerHeight: 0,
headerWidth: 12,
rows: rowSize,
toolbar: false,
sheetsbar: false,
resizable:true,
sheets: [{
name: "DataSet",
dataSource: dataSource,
columns: [ { width: 50 }, { width: 50 } ],
}],
change: onChange
});
}