Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SparklineGroup.Sparklines Property

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

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

#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