diff --git a/src/constants.ts b/src/constants.ts index 4d1c775a89..902b96d1a2 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -295,7 +295,7 @@ export const PIVOT_TABLE_CONFIG = { bandedRows: true, bandedColumns: false, styleId: "TableStyleMedium5", - automaticAutofill: true, + automaticAutofill: false, }; export const DEFAULT_CURRENCY: Currency = { diff --git a/tests/pivots/pivot_menu_items.test.ts b/tests/pivots/pivot_menu_items.test.ts index b32e1f2018..b6900e8e05 100644 --- a/tests/pivots/pivot_menu_items.test.ts +++ b/tests/pivots/pivot_menu_items.test.ts @@ -418,7 +418,7 @@ describe("Pivot reinsertion menu item", () => { }) ).toMatchObject({ range: { zone: toZone("B8") }, - config: { numberOfHeaders: 1, automaticAutofill: true }, + config: { numberOfHeaders: 1, automaticAutofill: false }, type: "dynamic", }); }); @@ -494,7 +494,7 @@ describe("Pivot reinsertion menu item", () => { }) ).toMatchObject({ range: { zone: toZone("B8:C11") }, - config: { numberOfHeaders: 1, automaticAutofill: true }, + config: { numberOfHeaders: 1, automaticAutofill: false }, type: "static", }); });