0
votes

How to show rows and columns in ag-grid even without data?I know when there is no data the grid collapses but how to make it visible few rows and columns?

1
if there are not data, then what to show in rows? You mean to say if there is no records then your grid gets collapsed? You can't see even columns?Paritosh
Yes Paritosh i dont see the columns.GrailsLearner

1 Answers

1
votes

You need to set height of the grid for that.

style="width: 100%; height: 100%;"

Check this Plunk for live example

Try to add/remove line #9 in app.component.ts and see yourself.