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

SparklineGroup.Sparklines Property

Provides access to the collection of sparklines contained in the sparkline group.

Namespace: DevExpress.Spreadsheet

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

Declaration

SparklineCollection Sparklines { get; }

Property Value

Type Description
SparklineCollection

A SparklineCollection object that is a collection of sparklines.

Remarks

A sparkline group consists of one or more sparkline charts that are stored within the SparklineCollection collection returned by the Sparklines property. Use members of the SparklineCollection object to manage the group’s set of sparklines. For example, you can add a new sparkline (SparklineCollection.Add), remove an existing sparkline (SparklineCollection.Remove or SparklineCollection.RemoveAt), access an individual Sparkline object by it’s index in the collection and change its location (Sparkline.SetPosition) or move it to the other sparkline group (Sparkline.MoveTo).

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Sparklines property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also