Excel python 中的图表标题边框样式和颜色
Chart Title Border Style and Color in Excel by python
我在 python 中创建了 xlswriter
的图表。
现在我想为图表标题设置边框。
我该怎么办?
代码:
创建带有标题的图表的代码如下所示。
new_df = pd.read_excel('Book2.xlsx')
X_Ls = new_df['X'].tolist()
Y_Ls = new_df['Y'].tolist()
Z_Ls = new_df['Z'].tolist()
bold = workbook.add_format({'bold': True})
headings = ['X_Ls', 'Y_Ls', 'Z_Ls']
data = [
X_Ls,
Y_Ls,
Z_Ls,
]
worksheet11.write_row('A1', headings, bold)
worksheet11.write_column('A2', data[0])
worksheet11.write_column('B2', data[1])
worksheet11.write_column('C2', data[2])
line_chart2 = workbook.add_chart({'type': 'line'})
line_chart2.add_series({
'name': '=Paging_KPI_prv!$C',
'categories': '=Paging_KPI_prv!$A:$A',
'values': '=Paging_KPI_prv!$C:$C',
'y2_axis': True,
'line': {'color': 'orange', 'width': 2.5}
})
column_chart2.combine(line_chart2)
column_chart2.set_title({ 'name': 'Affected User',
'name_font':{'name':'Calibri(Body)','size':14}})
worksheet11.insert_chart('C18', 图表 2)
enter image description here
我想要如下结果:
enter image description here
XlsxWriter 当前不支持标题框的边框和填充格式。如果开一个feature request就可以加
我在 python 中创建了 xlswriter
的图表。
现在我想为图表标题设置边框。
我该怎么办?
代码:
创建带有标题的图表的代码如下所示。
new_df = pd.read_excel('Book2.xlsx')
X_Ls = new_df['X'].tolist()
Y_Ls = new_df['Y'].tolist()
Z_Ls = new_df['Z'].tolist()
bold = workbook.add_format({'bold': True})
headings = ['X_Ls', 'Y_Ls', 'Z_Ls']
data = [
X_Ls,
Y_Ls,
Z_Ls,
]
worksheet11.write_row('A1', headings, bold)
worksheet11.write_column('A2', data[0])
worksheet11.write_column('B2', data[1])
worksheet11.write_column('C2', data[2])
line_chart2 = workbook.add_chart({'type': 'line'})
line_chart2.add_series({
'name': '=Paging_KPI_prv!$C',
'categories': '=Paging_KPI_prv!$A:$A',
'values': '=Paging_KPI_prv!$C:$C',
'y2_axis': True,
'line': {'color': 'orange', 'width': 2.5}
})
column_chart2.combine(line_chart2)
column_chart2.set_title({ 'name': 'Affected User',
'name_font':{'name':'Calibri(Body)','size':14}})
worksheet11.insert_chart('C18', 图表 2) enter image description here
我想要如下结果: enter image description here
XlsxWriter 当前不支持标题框的边框和填充格式。如果开一个feature request就可以加