I'm trying to hide grid on successfully generated .xls with 2 sheets included. I read the xlwt doc and among other properties that can be set on xlwt-related objects, there is show_grid function included. I was trying following, but it doesn't change anything:
with open(os.path.join('sheet1_test.csv'), 'rb') as cf:
reader = csv.reader(cf)
for r, row in enumerate(reader):
for c, col in enumerate(row):
sheet1.write(c, r, col, easyxf(
'font: name Arial;',
'show_grid: off'
))
I appreciate any help.