ratojakuf
ratojakuf

Reputation: 738

How to delete showing of table's grid in the QTableWidget?

http://i.imgur.com/O6PeOLy.png

I mean to set border: 0 px of every cell.

Upvotes: 0

Views: 232

Answers (1)

Robert
Robert

Reputation: 807

You can either use setShowGrid or setGridStyle with Qt::NoPen on your QTableView/Widget. These properties can also be directly set in QtDesigner.

Upvotes: 1

Related Questions