XlsxWriter chart without the explanation textbox?
Hei! I want to make a cleaner look on a train analyze project. Have this Excel speardsheet: I want to show the chart without the -Serie1 text box. Some of the code in action: df.to_excel(writer, sheet_name=’Year_sheet’, startrow=1, header=False, index=False) workbook = writer.book workbook = writer.book worksheet1 = writer.sheets[‘Year_sheet’] chart_weight = workbook.add_chart({‘type’: ‘line’}) chart_weight.add_series({‘values’: ‘=Year_sheet!$B$2:$B$13’}) chart_weight.set_x_axis({‘name’:… Read More XlsxWriter chart without the explanation textbox?