Text

ChartTitle.Text property

获取或设置图表标题的文本。 如果无效的或指定空值,将显示自动生成的标题。

public string Text { get; set; }

评论

使用Show如果您需要隐藏标题,请选择。

例子

演示如何插入图表并设置标题。

Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

// 使用文档生成器插入图表形状并获取其图表。
Shape chartShape = builder.InsertChart(ChartType.Bar, 400, 300);
Chart chart = chartShape.Chart;

// 使用“Title”属性为图表指定标题,该标题显示在图表区域的顶部中心。
ChartTitle title = chart.Title;
title.Text = "My Chart";

 // 将“Show”属性设置为“true”以使标题可见。
title.Show = true;

// 将“Overlay”属性设置为“true”,允许其他图表元素与标题重叠,从而为它们提供更多空间
title.Overlay = true;

doc.Save(ArtifactsDir + "Charts.ChartTitle.docx");

也可以看看