组中的自定义农业网格单元

时间:2020-06-01 15:05:10

标签: angular ag-grid

我希望对ag-grid中分组的单元格保持合理。 现在这就是我得到的:enter image description here

这是列或至少一部分的定义:

 this.columnDefs = [
  { field: 'lot', rowGroup: true, hide: true, },
  {
    headerName: 'Titre', field: 'name', sortable: true, width: 150,
  },

我尝试了cellStyle和cellClass,但是没有任何变化。 我该如何解决?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案

::ng-deep .ag-theme-balham .ag-row-group .ag-cell{
justify-content: flex-start !important;
}

enter image description here