Remove Title Chart - LINQ

Hi,
I’m working with the LINQ engine. How can I remove the title from a graphic created with the LINQ engine?

PieChart.docx (24.6 KB)

@Blegork

The chart is import as Shape node into Aspose.Words’ DOM. You can check either shape is chart or not using Shape.HasChart property.

You can use Chart.Title property to get access to the chart title properties. This property returns object of ChartTitle class. You can use ChartTitle.Show property to hide the chart tile by setting its value to false.

Regarding working with chart title using LINQ Reporting, please refer to the following article.