Having some issues with customizing a data grid that I developed.
Is there a way to eliminate the header bottom border and insert spacing between each row in the table?
Example Code:
<dx-data-grid style="margin-top:50px" class="table" [dataSource]="datas"
[showColumnLines]="false" [showRowLines]="false" [columnAutoWidth]="true" [allowColumnResizing]="true">
<dxo-header-filter [visible]="true"></dxo-header-filter>
<dxi-column dataField="ID" dataType="text" caption="ID"></dxi-column>
<dxi-column dataField="Name" dataType="text" caption="Name"></dxi-column>
</dx-data-grid>