开发者社区> 问答> 正文

使用Openpyxl编辑图表标题的字体大小

问题 我想使用openpyxl来更改图表的标题。然而,当我去搜索它的时候,无论是StackOverflow还是谷歌,大多数时候,人们想要改变轴的标题。但我对改变图表标题本身很感兴趣。请不要关闭我的代码,因为它的大部分只是我的造型图和显示数据雪花图。

chart = LineChart(auto_axis = False)

chart.height = 15 # default is 7.5
chart.width = 30 # default is 15

# Setting the title and style
titleStr = "IB Issues (" + str(bussinessMonth[0]) + " - " + str(businessMonth[6]) + ")" + "\nSource: IE"
chart.title = titleStr
chart.style = 11

# Adding the data
data = Reference(summaryWS, min_col=2, max_col= summaryWS.max_column, min_row=3, max_row = 4)
chart.add_data(data, titles_from_data=True, from_rows=True )

Date = Reference(summaryWS, min_col=3, max_col= summaryWS.max_column , min_row = 2 )
chart.set_categories(Date)


 # Styling of lines
s1 = chart.series[0]
s1.smooth = False  # Make the line smooth

# Initialise data labels
s1.dLbls = DataLabelList()
s1.dLbls.dLblPos = "t"
s1.dLbls.showVal = True

# Styling of lines
s2 = chart.series[1]
s2.graphicalProperties.line.solidFill = "ED7D31"
s2.graphicalProperties.line.dashStyle = "sysDot"
s2.smooth = False  # Make the line smooth

# Initialise data labels
s2.dLbls = DataLabelList()
dl = DataLabel()
dl.showVal = True
dl.showSerName = True
dl.position = "t"
s2.dLbls.dLbl.append(dl)


summaryWS.add_chart(chart, "B10")

问题 谢谢。 问题来源StackOverflow 地址:/questions/59384849/edit-the-font-size-of-the-chart-title-using-openpyxl

展开
收起
kun坤 2019-12-26 14:28:40 1595 0
0 条回答
写回答
取消 提交回答
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载

相关实验场景

更多