Ngx-datatable-row-detail - automático ou barra de rolagem

<ngx-datatable-row-detail
        [rowHeight]="100"
        #myDetailRow
        (toggle)="onDetailToggle($event)"
      >
        <ng-template
          let-row="row"
          let-expanded="expanded"
          ngx-datatable-row-detail-template
        >
          <table style="width: 100%; height: auto;">
            <thead>
              <tr>
                <th style="width: 80%; text-align: center">Produto</th>
                <th style="width: 10%; text-align: center">Quantidade</th>
                <th style="width: 10%; text-align: center">Pontos</th>
              </tr>
            </thead>
            <tbody>
              <tr *ngFor="let entidade of row.produtos">
                <td style="text-align: justify">{{ entidade.produto }}</td>
                <td style="text-align: center">
                  {{ entidade.quantidade }}
                </td>
                <td style="text-align: center">{{ entidade.pontos }}</td>
              </tr>
            </tbody>
          </table>
        </ng-template>
      </ngx-datatable-row-detail>

Vi que manda na altura é aqui [rowHeight]=“250”. Se aumento, ele aumenta. Mas queria algo automático ou com barra de rolagem. Tem como ?