how to make the cells of a grid bold

569 Views Asked by At

Another wxgrid question: After you create your grid, I would like to create the form in the attached image enter image description here

I know I can set the background color via grid.SetCellBackgroundColour(2, 2, "light blue") but how can i gold the lines just like the example

1

There are 1 best solutions below

4
On

You can probably do that with a custom Grid renderer, which you can find in wx.lib.mixins.gridlabelrenderer. The wxPython demo has an example.

Another way to do this would be to use the XLSGrid widget, which is a custom widget in wxPython. There's also a demo for that one as well. I suspect it is using the wx.grid.Grid under the covers, so you might want to take a look at its source to see how it works.