本文整理汇总了Python中openpyxl.writer.charts.BarChartWriter._write_title方法的典型用法代码示例。如果您正苦于以下问题:Python BarChartWriter._write_title方法的具体用法?Python BarChartWriter._write_title怎么用?Python BarChartWriter._write_title使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类openpyxl.writer.charts.BarChartWriter
的用法示例。
在下文中一共展示了BarChartWriter._write_title方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_write_title
# 需要导入模块: from openpyxl.writer.charts import BarChartWriter [as 别名]
# 或者: from openpyxl.writer.charts.BarChartWriter import _write_title [as 别名]
def test_write_title(self, bar_chart, root_xml):
cw = BarChartWriter(bar_chart)
cw._write_title(root_xml)
expected = """<?xml version='1.0' ?><test xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart"><c:title><c:tx><c:rich><a:bodyPr /><a:lstStyle /><a:p><a:pPr><a:defRPr /></a:pPr><a:r><a:rPr lang="en-GB" /><a:t>TITLE</a:t></a:r></a:p></c:rich></c:tx><c:layout /></c:title></test>"""
xml = get_xml(root_xml)
diff = compare_xml(xml, expected)
assert diff is None, diff