I would like to change the row and column height using Openpyxl. I can change the specific row and height like this:
import openpyxl
wb = openpyxl.Workbook()
ws = wb.active
ws.row_dimensions[1].height = 10
But I want to change the default height and width of rows and column so that I don't have to do this for each row and each column.
Is it possible to do this?