From ea36c93e7b97424f4b4232b8a136aaff12248c34 Mon Sep 17 00:00:00 2001 From: wisonic-s Date: Fri, 22 Aug 2025 16:43:52 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E9=80=8F=E8=A7=86=E8=A1=A8=E5=AE=BD=E5=BA=A6=E8=87=AA=E9=80=82?= =?UTF-8?q?=E5=BA=94=E5=A4=B1=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../chart/components/js/panel/charts/table/table-pivot.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/chart/components/js/panel/charts/table/table-pivot.ts b/core/core-frontend/src/views/chart/components/js/panel/charts/table/table-pivot.ts index 931ca9ab35..d572eef599 100644 --- a/core/core-frontend/src/views/chart/components/js/panel/charts/table/table-pivot.ts +++ b/core/core-frontend/src/views/chart/components/js/panel/charts/table/table-pivot.ts @@ -386,7 +386,11 @@ export class TablePivot extends S2ChartView { hierarchyType: basicStyle.tableLayoutMode ?? 'grid', // dataSet: spreadSheet => new CustomPivotDataset(spreadSheet), interaction: { - hoverHighlight: !(basicStyle.showHoverStyle === false) + hoverHighlight: !(basicStyle.showHoverStyle === false), + resize: { + rowResizeType: 'all', + colResizeType: 'all' + } }, dataCell: meta => { return new CustomDataCell(meta, meta.spreadsheet)