C#为电子表格图表OpenXml添加简单标题

时间:2017-03-01 01:41:35

标签: c# excel openxml

您好!!

我能够将图表写入我的XLSX文件。但我坚持为每张图表添加一个简单的标题。 没有样式只是简单的纯文本。 我的代码是这样的:

 String Dtitulo = "Hello chart";
 DocumentFormat.OpenXml.Drawing.Charts.Title chartTitle = new DocumentFormat.OpenXml.Drawing.Charts.Title();                
 chartTitle.ChartText = new ChartText();                    
 chartTitle.ChartText.RichText = new RichText();
 DocumentFormat.OpenXml.Drawing.Paragraph parrafoTitulo = new DocumentFormat.OpenXml.Drawing.Paragraph();
 DocumentFormat.OpenXml.Drawing.Run run = parrafoTitulo.AppendChild(new DocumentFormat.OpenXml.Drawing.Run());
 run.AppendChild(new DocumentFormat.OpenXml.Drawing.Text(Dtitulo));

chartTitle.ChartText.RichText.AppendChild<DocumentFormat.OpenXml.Drawing.Paragraph>(parrafoTitulo);
chart.Title = chartTitle;

但是当我用excel打开我的文件时说&#34; 文件已损坏&#34;或类似的东西。

1 个答案:

答案 0 :(得分:2)

有点晚了,但我遇到了同样的任务,我创建了一个excel表并手动添加了一个带有图表标题的图表,然后打开了xml以了解需要哪些标签。过了一会儿我就开始工作了。将所有内容都移到一个小函数中,如下所示:

因此,您可以在下面的函数中提供您想要的图表对象和标题,它将添加图表标题。

注意:我正在使用Open XML SDK 2.0 for Microsoft Office

private void AddChartTitle(DocumentFormat.OpenXml.Drawing.Charts.Chart chart,string title)
    {
        var ctitle = chart.AppendChild(new Title());
        var chartText = ctitle.AppendChild(new ChartText());
        var richText = chartText.AppendChild(new RichText());

        var bodyPr = richText.AppendChild(new BodyProperties());
        var lstStyle = richText.AppendChild(new ListStyle());
        var paragraph = richText.AppendChild(new Paragraph());

        var apPr = paragraph.AppendChild(new ParagraphProperties());
        apPr.AppendChild(new DefaultRunProperties());

        var run = paragraph.AppendChild(new DocumentFormat.OpenXml.Drawing.Run());
        run.AppendChild(new DocumentFormat.OpenXml.Drawing.RunProperties() { Language = "en-CA" });
        run.AppendChild(new DocumentFormat.OpenXml.Drawing.Text() { Text = title });
    }

如果你想要一个完整的例子,你可以查看官方的here,并在正确的位置注入上述函数(在创建图表对象之后),它将添加图表标题。< / p>