Aspose::Words::Drawing::Charts::ChartTitle class

ChartTitle class

Provides access to the chart title properties. To learn more, visit the Working with Charts documentation article.

class ChartTitle : public System::Object

Methods

MethodDescription
get_Font()Provides access to the font formatting of the chart title.
get_Format()Provides access to fill and line formatting of the chart title.
get_Overlay()Determines whether other chart elements shall be allowed to overlap title. By default overlay is false.
get_Show()Determines whether the title shall be shown for this chart. Default value is true.
get_Text()Gets or sets the text of the chart title. If null or empty value is specified, auto generated title will be shown.
GetType() const override
Is(const System::TypeInfo&) const override
set_Overlay(bool)Setter for Aspose::Words::Drawing::Charts::ChartTitle::get_Overlay.
set_Show(bool)Setter for Aspose::Words::Drawing::Charts::ChartTitle::get_Show.
set_Text(const System::String&)Setter for Aspose::Words::Drawing::Charts::ChartTitle::get_Text.
static Type()

Examples

Shows how to insert a chart and set a title.

auto doc = System::MakeObject<Aspose::Words::Document>();
auto builder = System::MakeObject<Aspose::Words::DocumentBuilder>(doc);

// Insert a chart shape with a document builder and get its chart.
System::SharedPtr<Aspose::Words::Drawing::Shape> chartShape = builder->InsertChart(Aspose::Words::Drawing::Charts::ChartType::Bar, 400, 300);
System::SharedPtr<Aspose::Words::Drawing::Charts::Chart> chart = chartShape->get_Chart();

// Use the "Title" property to give our chart a title, which appears at the top center of the chart area.
System::SharedPtr<Aspose::Words::Drawing::Charts::ChartTitle> title = chart->get_Title();
title->set_Text(u"My Chart");
title->get_Font()->set_Size(15);
title->get_Font()->set_Color(System::Drawing::Color::get_Blue());

// Set the "Show" property to "true" to make the title visible.
title->set_Show(true);

// Set the "Overlay" property to "true" Give other chart elements more room by allowing them to overlap the title
title->set_Overlay(true);

doc->Save(get_ArtifactsDir() + u"Charts.ChartTitle.docx");

See Also