Currently, I am utilizing a datagrid to display information.
I have been attempting to implement border radius on all the table rows, but it doesn't seem to be working.
Does anyone have insight into how I can apply border-radius to all rows in the table?
Is there a method to align the text entirely to the left and "remove" the existing column without deleting indexing?
Thank you
Code Snippet
<dx-data-grid class="tableTask" id="gridContainer" [dataSource]="Data" [remoteOperations]="false"
[allowColumnReordering]="true" [showRowLines]="false" [showColumnLines]="false" [rowAlternationEnabled]="true"
[showBorders]="false">
<dxo-group-panel [visible]="true"></dxo-group-panel>
<dxo-grouping [autoExpandAll]="false"></dxo-grouping>
<dxi-column dataField="name" [groupIndex]="0"></dxi-column>
<dxi-column dataField="name" dataType="string"></dxi-column>
<dxi-column dataField="name1" dataType="string"></dxi-column>
<dxi-column dataField="name2" dataType="string"></dxi-column>
<dxi-column dataField="name3" dataType="string" [width]="150"></dxi-column>
</dx-data-grid>