Chart
Contents
[
Hide
]Chart class
Provides access to the chart shape properties.
To learn more, visit the Working with Charts documentation article.
public class Chart
Properties
Name | Description |
---|---|
Axes { get; } | Gets a collection of all axes of this chart. |
AxisX { get; } | Provides access to properties of the primary X axis of the chart. |
AxisY { get; } | Provides access to properties of the primary Y axis of the chart. |
AxisZ { get; } | Provides access to properties of the Z axis of the chart. |
DataTable { get; } | Provides access to properties of a data table of this chart. The data table can be shown using the Show property. |
Format { get; } | Provides access to fill and line formatting of the chart. |
Legend { get; } | Provides access to the chart legend properties. |
Series { get; } | Provides access to series collection. |
SeriesGroups { get; } | Provides access to a series group collection of this chart. |
SourceFullName { get; set; } | Gets the path and name of an xls/xlsx file this chart is linked to. |
Title { get; } | Provides access to the chart title properties. |
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
- namespace Aspose.Words.Drawing.Charts
- assembly Aspose.Words