0
我可以將圖表寫入我的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說「文件已損壞」或類似的東西。
你可以發佈你的代碼,生成一個非損壞的文件?然後我們可以幫助您改變它以獲得一些標題。 – Taterhead