I have implemented a complete table component with own custom template.
As you said in this link, I followed the same link and my table header fixing problem is fixed, but when I am scrolling my table Horizontally then after certain width rest table cell/row got hide. What's the problem. Please guide.

All data. should display.
Hi,
聽
Would you please provide us with a sample project where the issue can be seen?
The cause of the problem is that a style passed to the TableContainer component overwrites your 'overflow' style property so this element does not trigger scroll events. To fix this, just merge styles from props with yours. Here's the updated project. Please let me know if it helps.
This behavior is expected: the column width is set to 200px and a stub header cell fills the remaining space. To make it appear as a single cell I recommend that you apply the same background style to your stub header cell component and show a resizing control on hover only.
This thread has been automatically locked since it is closed and there has not been any recent activity. Please open a new issue for related bugs or feature requests.
Most helpful comment
The cause of the problem is that a style passed to the TableContainer component overwrites your 'overflow' style property so this element does not trigger scroll events. To fix this, just merge styles from props with yours. Here's the updated project. Please let me know if it helps.