Posts by Marcelo Luís • 1 point
2 posts
-
0
votes1
answer73
viewsA: Eliminate radar chart caption created with the openpyxl module in Python
The answers to my 2 problems are: Delete the chart caption: chart.legend = None Keep axle grid lines at 1 in 1: chart.y_axis.majorUnit = 1…
-
-1
votes1
answer73
viewsQ: Eliminate radar chart caption created with the openpyxl module in Python
would like to be able to delete the chart caption generated in excel by the Pyhton program using the openpyxl module below: from openpyxl import workbook from openpyxl import load_workbook from…