我需要检测何时有人在枢轴模式下检查/取消检查工具面板上的某些东西。
<ag-grid-angular #agGrid [style.width.%]="100" [style.height.px]="height" id="pivotGrid" class="ag-theme-balham"
[columnDefs]="columnDefs" [defaultColDef]="defaultColDef" [pivotMode]="true" [rowData]="rowData"
(gridReady)="onGridReady.emit($event)" [autoGroupColumnDef]="autoGroupColumnDef" [animateRows]="true"
[pivotRowTotals]="pivotRowTotals" [gridOptions]="gridOptions" [groupDefaultExpanded]="groupDefaultExpanded">
</ag-grid-angular>
这是我的数据透视表,在文档中我找不到关于此的任何东西
https://www.ag-grid.com/javascript-grid-change-detection/#pivot-example
任何建议我该怎么做?