VSeed, an elegant data composer, transforming complexity into simplicity.
!!!###!!!title=other——VisActor/VTable tutorial documents!!!###!!!!!!###!!!description=This chapter introduces some other usages of VTable-Sheet, including cell merging, frozen rows and columns, custom themes and styles, etc. Since VTable-Sheet is based on VTable, VTable configuration options can also be used in VTable-Sheet.!!!###!!!
Advanced Features
This chapter introduces some other usages of VTable-Sheet, including cell merging, frozen rows and columns, custom themes and styles, etc. Since VTable-Sheet is based on VTable, VTable configuration options can also be used in VTable-Sheet.
Cell Merging
VTable-Sheet supports merging cells, which can be set in the configuration:
const sheetInstance = new VTableSheet(document.getElementById('container'), {
sheets: [
{
sheetKey: 'sheet1',
sheetTitle: 'Sheet 1',
// Other configurations...cellMerge: [
{
text: 'Merged Cell', // Text displayed after mergingrange: {
start: {
col: 0, // Starting column indexrow: 0// Starting row index },
end: {
col: 2, // Ending column indexrow: 1// Ending row index },
isCustom: true// Mark as custom merge }
},
// Multiple merge regions can be defined {
text: 'Another Merged Region',
range: {
start: { col: 3, row: 3 },
end: { col: 4, row: 5 },
isCustom: true }
}
]
}
]
});
Frozen Rows and Columns
You can set frozen rows and columns in the table, keeping specific rows or columns visible when scrolling:
const sheetInstance = new VTableSheet(document.getElementById('container'), {
sheets: [
{
sheetKey: 'sheet1',
sheetTitle: 'Sheet 1',
// Freeze the first row and first 2 columnsfrozenRowCount: 1,
frozenColCount: 2,
// Other configurations... }
]
});
Undo/redo buttons are enabled by default. When mainMenu.show is true, the buttons appear on the menu bar; otherwise a standalone undo/redo control is rendered at the top-left.
VTable-Sheet uses the HistoryPlugin internally to record table-level operations and aggregates them into a workbook history stack. You can customize HistoryPlugin via VTablePluginModules: