I have created an ag-grid component by clicking of the button I want to set enableRtl property to true.
In brief, I have added one component let's say -
<ag-grid-angular #agGrid [floatingFilter]="true"
[enableRtl]="isArabic" (gridReady)="onGridReady($event)"
[(enableRtl)]="enableRtl"
[rowSelection]="rowSelection"
[defaultColDef]="columnConfig" [rowData]="data"
[columnDefs]="columns"
[gridOptions]="gridOptions"
></ag-grid-angular>
Now I want to change the enableRtl based on the click event.
Here, enableRtl is a public variable for the component.
But, it is not reflecting the RTL.
I have added the scenario at Stackblitz -
https://stackblitz.com/edit/angular-ag-grid-col-span-and-col-group-tsso85