ChartTitle
ChartTitle class
提供对图表标题属性的访问。
要了解更多信息,请访问使用 图表文档文章。
public class ChartTitle
特性
姓名 | 描述 |
---|---|
Overlay { get; set; } | 确定是否允许其他图表元素重叠标题。 默认情况下重叠是错误的 . |
Show { get; set; } | 确定是否应显示此图表的标题。 默认值为真的 . |
Text { get; set; } | 获取或设置图表标题的文本。 如果无效的 或指定空值,将显示自动生成的标题。 |
例子
演示如何插入图表并设置标题。
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");