Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

ChartCollection.GetCharts(String) Method

Get chart(s) by name.

Namespace: DevExpress.Spreadsheet.Charts

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

IList<Chart> GetCharts(
    string chartName
)

Parameters

Name Type Description
chartName String

A string that is the name of a chart.

Returns

Type Description
IList<Chart>

A collection of charts with the same name.

Remarks

A chart name is specified by the Shape.Name property. A worksheet may contain more than one chart with the same name. In this situation, the IList<Chart> collection returned by the GetCharts method contains several items.

If a chart with the specified name is not found, the method returns an empty list.

See Also