ChartTitle

ChartTitle class

Provides access to the chart title properties.

To learn more, visit the Working with Charts documentation article.

public class ChartTitle

Properties

NameDescription
Font { get; }Provides access to the font formatting of the chart title.
Overlay { get; set; }Determines whether other chart elements shall be allowed to overlap title. By default overlay is false.
Show { get; set; }Determines whether the title shall be shown for this chart. Default value is true.
Text { get; set; }Gets or sets the text of the chart title. If null or empty value is specified, auto generated title will be shown.

Examples

Shows how to insert a chart and set a title.

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

// Insert a chart shape with a document builder and get its chart.
Shape chartShape = builder.InsertChart(ChartType.Bar, 400, 300);
Chart chart = chartShape.Chart;

// Use the "Title" property to give our chart a title, which appears at the top center of the chart area.
ChartTitle title = chart.Title;
title.Text = "My Chart";
title.Font.Size = 15;
title.Font.Color = Color.Blue;

// Set the "Show" property to "true" to make the title visible. 
title.Show = true;

// Set the "Overlay" property to "true" Give other chart elements more room by allowing them to overlap the title
title.Overlay = true;

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

See Also