Change border of a power table

I’m looking for a way to change the border of a powertable…
ConfigureXXX extension functions only applied to cell and header.

initialize :
self.border = None

2 Likes

Hello, Im using renderer property to make button on power table. Now i want to set border to button "RaisedBevel".

Interesting, please share your code; I would like to know how you are doing this. Is this being done with the configureCell extension function?

Hi,
yes, Im doing this using configure Cell extention function
, also im able to change colour but now i have to improve UI. so I have to set different border for button.

Please check below code & let me know if suggestion

if colName == "Details":
from javax.swing import JButton
from java.awt import Color
Button= JButton("Details")
Button.setBackground(Color.orange);
Button.setForeground(Color.red);
return { 'renderer' : Button}