I have a question regarding the status bar in ag-grid's Enterprise Edition. Currently, I am using ag-grid-community 19.1 with Angular 7.
My goal is to hide the status bar completely. Even when I exclude the statusBar
grid option, there is still an empty space at the bottom of my grid where the status bar should be. Upon inspecting the HTML, I found this code snippet:
<!--AG-STATUS-BAR-->
<div class="ag-status-bar" ref="statusBar">
<div ref="eStatusBarLeft" class="ag-status-bar-left"></div>
<div ref="eStatusBarCenter" class="ag-status-bar-center"></div>
<div ref="eStatusBarRight" class="ag-status-bar-right"></div>
</div>
If I remove this section entirely through the Chrome console, it disappears as desired. However, attempts to achieve the same result using CSS have been unsuccessful:
.ag-status-bar {
height: 0px;
}
Ideally, I would like to find a programmatic way to accomplish this through a setting in the statusBar
grid option, but I haven't found any relevant information in the ag-grid documentation.
Any assistance on this matter would be greatly appreciated. Thank you.