How to Remove Field Caption in list page?

How to Remove Field Caption in list page? Can anyone help me?

You may simply put this following code in Page_Load server event of List Page:$this->YourFieldName->setCaption(" "); // adjust YourFieldName to your actual field name

I’ve been trying to get this to work - in page load of list page, trying to replace field names - example field named c1, want to rename to date - would this be the code? tried and can’t get it to go…
$this->c1->setCaption(“date”);

That code above is for v2021.If you are using v2024, then you may simply use this code in Row_Rendered server event:

$this->c1->Caption = "My Date";

Just what I needed - thank you so much!