We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e3783 commit 10564e4Copy full SHA for 10564e4
src/modify/modify-chart.ts
@@ -536,11 +536,21 @@ export class ModifyChart {
536
},
537
});
538
539
+ this.setWorkbookTableFirstColumn()
540
this.columns.forEach((addCol, s) => {
541
this.setWorkbookTableColumn(s + 1, addCol.label);
542
543
}
544
545
+ setWorkbookTableFirstColumn(): void {
546
+ this.workbookTable.modify({
547
+ tableColumn: {
548
+ index: 0,
549
+ modify: ModifyXmlHelper.attribute('id', 1)
550
+ },
551
+ });
552
+ }
553
+
554
setWorkbookTableColumn(c: number, label: string): void {
555
this.workbookTable.modify({
556
tableColumn: {
0 commit comments