Skip to main content
A newer version of this page is available.
All docs
V18.2
Row

SparklineGroupCollection.GetSparklineGroups(Range) Method

Returns the sparkline groups located in the specified cell range.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v18.2.Core.dll

Declaration

IList<SparklineGroup> GetSparklineGroups(
    Range range
)

Parameters

Name Type Description
range Range

A Range object specifying a cell range occupied by the sparkline groups to be returned.

Returns

Type Description
IList<SparklineGroup>

A IList<T><SparklineGroup,> collection of sparkline groups occupying the specified cell range.

Remarks

Use the GetSparklineGroups method to obtain a collection of sparkline groups which occupy the specified cell range. The GetSparklineGroups method returns an empty list in the following cases:

  • If the range parameter of the method is null.
  • If the Range object specified by the range parameter doesn’t belong to the worksheet owning the current SparklineGroupCollection collection.
  • If the specified cell range doesn’t contain any sparklines.
See Also