Thanks for contacting Syncfusion Support.
We have checked your query. We can able to achieve your requirement by using showHeaders property as false in Spreadsheet. Please refer the below code snippet and sample
|
let spreadsheet: Spreadsheet = new Spreadsheet({
sheets: [
{
showHeaders: false,
name: 'Car Sales Report',
ranges: [{ dataSource: (dataSource as any).defaultData }],
rows: [
{
index: 30,
cells: [
{
index: 4,
value: 'Total Amount:',
style: { fontWeight: 'bold', textAlign: 'right' }
},
{ formula: '=SUM(F2:F30)', style: { fontWeight: 'bold' } }
]
}
],
}
],
}
]})
|
Could you please check the above details, and get back to us if you need assistance on this.
Regards,
Aravinthan S