Open chintan-beecept opened 1 year ago
Hi any help you can give, I also cant remove the border of the row.
@niro121 @chintan-beecept the border is added in this .css file, programmatically there is not yet an implementation to remove it.
@hiagodotme @chintan-beecept I found a workaround for this by overriding the borderCollapse
to unset
.
const data_new = [
{
type: 'table',
style: {
border: 'none',
borderCollapse: 'unset',
},
...
]
Hope this helps.
When print a Table even I set border to 0, it still prints the border.
If above syntax is incorrect then can you please suggest correct one?