I am creating a table using pptx python
Reference: https://python-pptx.readthedocs.io/en/latest/dev/analysis/tbl-table.html
When I create a table, I get the default table style and I would like to change it. Any recommendation?
x, y, cx, cy = Inches(4.5), Inches(1.5), Inches(4.0), Inches(0)
shape = slide.shapes.add_table(7, 5, x, y, cx, cy)
table = shape.table
I am thinking of table.apply_style()
but I can't figure out the correct syntax