how to change the font size of a DataViewCtrl on Mac

Hi

Does wxPython dataViewCtrl support changing font size using SetFont()?

I am using:

print wxversion.getInstalled()

[‘3.0-osx_cocoa’]

I tried to change the size of a dataViewCtrl using the following code:

(dvctrl is my dataViewCtrl)

font = dvctrl.GetFont()

font.SetPointSize(15)

            dvctrl.SetFont(font)

The above code snippet works on Windows and Linux, but does not seem to have any effect on Mac.

Is this supported on Mac wxPython. If not any workaround?

Thanks in advance!

Xiang Li