Hi Thomas,
Greetings from syncfusion support.
Query#: How can I remove that indicator from the column headers?
You can remove the column indicator by using css properties. Please refer the below code example for more information.
Index.html
If you want to remove the arrow indicator in column header, please refer the below css to achieve you requirement.
<style>
.e-grid .e-sortfilterdiv {
display: none;
}
</style>
If you want to remove the number in column header, please refer the below css to achieve you requirement.
<style>
.e-grid .e-sortnumber {
display: none;
}
</style> |
Regards,
Prasanna Kumar N.S.V